本文介绍了适用于python 3.6的xgboost打包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在window和python 3.6.5中安装xgboost0.72它显示了以下错误:
I am trying in install xgboost0.72 in window and python 3.6.5It shows me the following error:
谁能帮助我确定哪个版本的xgboost与python 3.6.5兼容.谢谢压缩
Can anyone help me out which version of xgboost is compatible with python 3.6.5.Thankszep
推荐答案
尝试做:
pip install xgboost
对我有用.
或尝试以下操作:
- 从[这里] [1]下载xgboost whl文件(请确保与您的python版本和系统架构匹配,例如,在64位计算机上用于python 3.5的"xgboost-0.6-cp35-cp35m-win_amd64.whl")
- 打开命令提示符
-
cd
到下载"文件夹(或保存whl文件的位置) -
pip install xgboost-0.6-cp35-cp35m-win_amd64.whl
(或任何您的whl文件命名)
- download xgboost whl file from [here][1] (make sure to match your python version and system architecture, e.g. "xgboost-0.6-cp35-cp35m-win_amd64.whl" for python 3.5 on 64-bit machine)
- open command prompt
cd
to your Downloads folder (or wherever you saved the whl file)pip install xgboost-0.6-cp35-cp35m-win_amd64.whl
(or whatever your whl file is named)
来源:如何安装xgboost软件包在python(Windows平台)中?
这篇关于适用于python 3.6的xgboost打包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!