python 中 xgboost 安装

针对 win64  python2.7版本64位  

针对 下载并利用VS2013编译xgboost后安装失败,进行其他方法安装。


本文地址 http://blog.csdn.net/onepiecehuiyu/article/details/51387305


一、 安装MinGW

  1. 下载安装 MinGW-64: http://sourceforge.net/projects/mingw-w64/     (PC中未安装MinGW的话)
  2. 在安装界面 Architecture 选择 x86_64  以及 Threads 选择 win32
  3. 若安装在 C:\mingw64  则添加PATH环境变量 C:\mingw64\mingw64\bin
  4. 由于目录 bin\mingw64 下 mingw32-make.exe 名字太长,因此将其重命名为make
  5. 打开cmd 键入 gcc. 将会看到类似 "fatal error: no input file"语句
  6. 键入 make. 将会看到类似 "No targets specified and no makefile found"语句
  7. 安装git

二、 从github上导入xgboost

  1. cd c:\
  2. git clone --recursive https://github.com/dmlc/xgboost
  3. cd xgboost
  4. git submodule init
  5. git submodule update
  6. cp make/mingw64.mk config.mk
  7. make -j4  (此处利用cmd执行)

如果编译成功,在xgboost根目录下会出现xgboost.exe

三、 安装xgboost

  1. cd python-package  (位于xgboost目录下)
  2. python setup.py install  (在此之前先安装numpy+mkl和scipy)


如果numpy+mkl 和scipy最后还是安装不成功,建议安装anaconda,这是一个python环境集成包,自带python环境、python大部分包以及spyder。内部已包含numpy+mkl+scipy


四、 安装包列表

MingW-win64

git-win64

numpy-MKL-win64-python2.7.exe

scipy-win64-pyhont2.7.exe

编译后的xgboost (仅适用于win64)


五、 参考文献

stackOverFlow

pythonlibs

你可能感兴趣的:(python 中 xgboost 安装)