数据分析工具Xgboost神器,官网上有很详细的安装方法,但折腾了半天还是不能使用。 后来搜索到一个十分便捷的方式,只需要很简单的一步就可以搞定。特此分享。
开始干活
环境: Windows 32或64位都行,具体版本没有测试,windows7 及以上应该都可以, 本案例windows 7+32位
预装:Microsoft Visual C++ Redistributable,要是电脑中没有安装这个环境,xgboost无法运行,一般安装OFFICE或者VS都会自动安装C++环境
Microsoft Visual C++ Redistributable参考: https://www.microsoft.com/zh-cn/search/DownloadResults.aspx?q=Microsoft+Visual+C%2b%2b+Redistributable+Package
第一步:
下载window匹配的xgboost程序, 根据自己电脑选择32位或64位,当然还要选择是python3.5 还是3.6, 目前只适用于3.5或3.6这两个版本
windows xgboost 程序 或 https://www.lfd.uci.edu/~gohlke/pythonlibs/#xgboost 找到
Xgboost, a distributed gradient boosting (GBDT, GBRT or GBM) library. 选择合适的whl文件
第二步:
在pycharm的terminal窗口 或cmd 中切换到刚刚下载的whl文件所在的目录,执行以下语句
pip install xgboost-0.7-cp36-cp36m-win32.whl(python 3.6 + win7 32位对应的xgboost文件名)
完成以上两步 就可以享受xgboost神器啦。
在pycharm的terminal窗口验证是否安装成功
本博文参考链接
http://blog.csdn.net/slibra_L/article/details/77500743 (anconda(python)中xgboost安装)
https://xgboost.readthedocs.io/en/latest/build.html (Xgboost官网方法)
http://blog.csdn.net/u013738531/article/details/70299611?ref=myrecommend (xgboost 其他安装方式)