1. Anaconda3 설치
몇 번 pycaret 설치 하다 버전 충돌로 2021 버전 인스톨 함.
2. 가상 환경 설정
# create a conda environment
conda create --name yourenvname python=3.8
pycaret은 현재 Python 3.8까지만 지원한다.
# activate conda environment
conda activate yourenvname
3. sklearn 버전 맞추기
Anaconda3 인스톨 후 Installation - PyCaret Official (gitbook.io) 문서 먼저 참조
문서 중간에 아래와 같이 sklearn 지원 버전이 나와있다.
*** PyCaret is not yet compatible with sklearn>=0.23.2.
필자의 버전은 conda list 로 확인 결과 0.24.2 이므로 downgrade 해야 된다.
conda install scikit-learn=0.22.2
4. # install pycaret
pip install pycaret
5. # create notebook kernel
python -m ipykernel install --user --name yourenvname --display-name "display-name"
6. python 환경에서 import 해서 pycaret, sklearn 정상 작동하는지 확인
7. 다른 패키지 설치하고 가상환경 복사하기
https://dschloe.github.io/python/newpkgs/pycaret_install/