红联Linux门户
Linux帮助

Ubuntu:ImportError: No module named xgboost的解决办法

发布时间:2017-03-06 10:07:44来源:linux网站作者:华东博客
提示错误如下:
ImportError: No module named xgboost
 
解决办法:
git clone --recursive https://github.com/dmlc/xgboost
cd xgboost;
sudo make -j4
sh build.sh
cd python-package
python setup.py install
 
如果已经完成了一下步骤:
git clone --recursive https://github.com/dmlc/xgboost
cd xgboost;
sudo make -j4
 
请尝试在当前目录下继续执行:
sh build.sh
cd python-package
python setup.py install
 
更多细节见:
Ubuntu:ImportError: No module named xgboost的解决办法
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28940.html