一、安装
安装步骤:
下载源码,编译
libxgboost.so
(对于windows
则是libxgboost.dll
)git clone --recursive https://github.com/dmlc/xgboost
# 对于 windows 用户,需要执行:
# git submodule init
# git submodule update
cd xgboost
make -j4
如果需要支持
GPU
,则执行下面的编译步骤:cd xgboost
mkdir build
cd build
cmake .. -DUSE_CUDA=ON
cd ..
make -j4
安装
python
支持cd python-package
sudo python setup.py install