xgboost installation issue with anaconda

前端 未结 7 1059
庸人自扰
庸人自扰 2020-12-30 05:54

I am using Anaconda. I first switched to Python2 (Version 2.7.11).

python -V
Python 2.7.11 :: Continuum Analytics, Inc.

I used the followin

7条回答
  •  长发绾君心
    2020-12-30 06:27

    The package image you download is corrupt. What you should do :

    First remove your xgboost package with (in the terminal) :

    conda remove xgboost

    Then reinstall with an other package at https://anaconda.org/aterrel/xgboost So just write :

    conda install py-xgboost

    Then you can check the installation in the python console :

    import xgboost

    It should be ok.

提交回复
热议问题