- 安装git,下载链接git for windows
- 安装mingw64,下载链接mingw64安装过程中Architecture 选择x86_64,其他值默认
直接在计算机中配置环境变量,添加名为PATH的环境变量,值为mingw64文件地址\bin\ - 打开git bash,输入以下命令
git clone --recursive https://github.com/dmlc/xgboost
cd xgboost
git submodule init
git submodule update
alias make='mingw32-make'
cp make/mingw64.mk config.mk; make -j4
cd python-package/
python setup.py install
判断xgboost是否成功安装:
import xgboost as xgb
成功导入后,基本就没有问题了。