I am trying in install xgboost0.72 in window and python 3.6.5 It shows me the following error:
xgboost-0.72-cp37-cp37m-win32.whl is not a supported wheel on this platform.
Can anyone help me out which version of xgboost is compatible with python 3.6.5. Thanks zep
Try doing:
It works for me.
Or try this:
cd
to your Downloads folder (or wherever you saved the whl file)pip install xgboost-0.6-cp35-cp35m-win_amd64.whl
(or whatever your whl file is named)Source :How to install xgboost package in python (windows platform)?