xgboost在win10 安装的we

时间:2022-09-09 00:29:47

最近在看xgboost的工具,需要在win10下安装,遇到一些问题,下面记录一下安装是遇到的问题。

首先是官方网站的安装说明

http://xgboost.readthedocs.io/en/latest/build.html


但是在安装前需要安装编译的环境

可以从下面的连接下载MinGW-w64 - for 32 and 64 bit Windows
https://sourceforge.net/projects/mingw-w64/?source=typ_redirect
在安装时建议不要选择最新的版本 xgboost在win10 安装的we
选择5版本的即可。(版本过高有时编译时报的错在低版本中没有,很无语。。。) 安装完成之后需要将minGw的目录bin添加到系统的path下。 可以在bin中找到对应的mingw32-make.exe 可以重命名为make.exe
之后就是参考官网进行xgboost的下载 建议首先安装一下git 下面的命令可以方便的在git-bash 中操作
git clone --recursive https://github.com/dmlc/xgboost
git submodule init
git submodule update
alias make='mingw32-make'   //这一步主要是针对mingw32-make.exe 没有重命名为make.exe 的
接下来是
cp make/mingw64.mk config.mk

cd dmlc-core

make -j4
cd ../rabit
make lib/librabit_empty.a -j4

cd ..

make -j4
经过上述之后就安装完成在使用时需要安装python的package
cd python-package

python setup.py install
这样python package就安装好了
就可以在python使用xgboost了。

遇到的问题集中在
直接进行 make -j4  按照官网的方法
Makefile:144: recipe for target 'build/logging.o' failed
Makefile:144: recipe for target 'build/learner.o' failed
mingw32-make: *** [build/learner.o] Error 1
mingw32-make: *** Waiting for unfinished jobs....
Makefile:144: recipe for target 'build/logging.o' failed
mingw32-make: *** [build/logging.o] Error 1


这些错误,但是最后发现是使用的mingw的版本的问题。。。。。 重装之后问题就没有了。