머신러닝/메모 및 에러 해결
xgboost 설치 오류 failed with initial frozen solve 해결 방법
proqk
2021. 2. 7. 17:57
반응형
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source
conda install -c anaconda py-xgboost
로 설치했는데 뜨는 문제
방법 1. 업데이트 후 재설치
conda update --all
방법 2. pip으로 설치
pip install xgboost
pip으로 설치해도 정상 동작했다
반응형