Ubuntu 下安装xgboost
今天是中秋节,先祝大家节日快乐!
今天宅在家里学习XGBoost以及其在Python下的使用。可是安装却跟其他模块不同,有些小麻烦,通过一些尝试,最终安装成功,很开心,跟大家分享一下。
我的环境Ubuntu14.04 ,Python2.7
下载
- 在github上下载最新版本XGBoot压缩包并解压;
环境配置
2. 执行以下命令
# cd xgboost-master
# make
在执行make命令时出现了问题:
Makefile: dmlc-core/make/dmlc.mk: No such file or directory
然后执行以下命令:
# git submodule init
又出现以下问题:
fatal: Not a git repository (or any of the parent directories): .git
执行命令:
# git init
然后再依次执行:
# git submodule init
# git submodule update
# git clone https://github.com/dmlc/xgboost --recursive
安装
现在进入xgboost目录下,正常执行安装操作:
# cd xgboost
# make
# cd python-package/
# python setup.py install --user
即可安装完成。
然后进入Python中导入测试:
# python
>>> import xgboost
>>>
安装成功!
最后感谢参考网页中的作者!
参考网页:
【1】http://www.tuicool.com/articles/3YfUJrr
【2】http://xgboost.readthedocs.io/en/latest/build.html
【3】http://blog.csdn.net/shichaosong/article/details/9153823