【发布时间】:2018-12-29 13:16:56
【问题描述】:
我正在尝试在 window 和 python 3.6.5 中安装 xgboost0.72 它向我显示以下错误:
xgboost-0.72-cp37-cp37m-win32.whl 不是此平台支持的滚轮。
谁能帮我确定哪个版本的 xgboost 与 python 3.6.5 兼容。 谢谢 泽普
【问题讨论】:
标签: python machine-learning xgboost
我正在尝试在 window 和 python 3.6.5 中安装 xgboost0.72 它向我显示以下错误:
xgboost-0.72-cp37-cp37m-win32.whl 不是此平台支持的滚轮。
谁能帮我确定哪个版本的 xgboost 与 python 3.6.5 兼容。 谢谢 泽普
【问题讨论】:
标签: python machine-learning xgboost
尝试做:
pip install xgboost
它对我有用。
或者试试这个:
cd 到您的下载文件夹(或保存 whl 文件的任何位置)pip install xgboost-0.6-cp35-cp35m-win_amd64.whl(或任何你的 whl 文件名称)来源:How to install xgboost package in python (windows platform)?
【讨论】: