一、安装

  1. 安装步骤:

    • 下载源码,编译libxgboost.so (对于windows 则是 libxgboost.dll

      1. git clone --recursive https://github.com/dmlc/xgboost
      2. # 对于 windows 用户,需要执行:
      3. # git submodule init
      4. # git submodule update
      5. cd xgboost
      6. make -j4

      如果需要支持GPU,则执行下面的编译步骤:

      1. cd xgboost
      2. mkdir build
      3. cd build
      4. cmake .. -DUSE_CUDA=ON
      5. cd ..
      6. make -j4
    • 安装python 支持

      1. cd python-package
      2. sudo python setup.py install