728x90
XGBoost 설치는 아나콘다 환경에서 쉽게 설치가 가능합니다. Windows 기반에서 설치하려면 아나콘다 command 창에서 아래와 같이 명령어를 입력하면 됩니다.
conda install -c anaconda py-xgboost
무슨 일인지 에러가 나는데 읽어보니 버전 오류인 것 같네요
1. xgboost package 다운받기
https://www.lfd.uci.edu/~gohlke/pythonlibs/
위의 사이트에 들어가서 'xgboost'라고 검색하여 본인 python 버전과 컴퓨터 사양에 맞는 whl파일을 다운 받습니다.
저의 경우 python 3.8이고 윈도우 64bit라서 사진에 밑줄 친 파일을 다운 받았고, 폴더(C:\Users\Administrator\anaconda3\Lib\site-packages) 안에 넣어주었습니다
2. 다시 아나콘다 command 창으로 돌아와서 명령어 입력
pip install (whl파일 경로\whl 파일 이름)
저의 경우는 아래처럼 입력했습니다.
pip install C:\Users\Administrator\anaconda3\Lib\site-packages\xgboost-1.3.3-cp38-cp38-win_amd64.whl
이렇게 나오면 설치가 완료된 것입니다~
3. python을 열어서 import 하여 잘 설치됐는지 확인
import xgboost
print(xgboost.__version__) # 1.3.3
728x90