Windows下安装Xgboost
所需的必要软件:
- Git
- MinGW
- Python
安装:
Git安装及使用省略,需注意,Windows下要安装一个git bash,为使用Linux命令。
Windows下Python的安装自行官网。
MinGW安装
安装时注意:
- Architecture 选择x86_64
- Threads 选择posix
- Exception 选择seh
完成安装后将MinGW的bin添加到PATH环境变量中。
例如,我的安装地址是
1 | D:\MinGW\mingw64 |
将 D:\MinGW\mingw64\bin 添加到环境变量PATH中。
1 | $ which mingw32-make |
可查看环境变量是否添加成功。成功则MinGW安装完成。
- 下载Xgboost并编译
1 | $ git clone --recursive https://github.com/dmlc/xgboost |
至此Xgboost安装完成。
Linux/MacOS下安装Xgboost
所需的必要软件:
- Git
- Python
参考Xgboost官网即可
- Linux下
1 | $ git clone --recursive https://github.com/dmlc/xgboost |
- MacOS下
1 | $ git clone --recursive https://github.com/dmlc/xgboost |
- 两个环境下都安装为Python包
1 | # path/to/xgboost |
至此Xgboost安装完成。
测试Xgboost的程序
1 | # import os |