gpt4 book ai didi

python-2.7 - 如何从 Github 导入 Xgboost 包到 Windows 7 上的 python 2.7?

转载 作者:行者123 更新时间:2023-12-03 23:41:07 25 4
gpt4 key购买 nike

我的系统规范 - Windows 7,python 2.7 Anaconda。我正在尝试从 github 导入 xgboost 模块。

import xgboost as xgb

导入错误:没有名为 xgboost 的模块

请指导如何将 xgboost 从 github 链接到我的 python 库,或者一般如何将任何模块从 github 导入到 Python/R 的本地库。

最佳答案

让您的生活更轻松。这是设置 python 库的一般方法。首先在 cmd 中尝试“pip install xgboost”和“easy_install xgboost”如果不是:

1:下载git和MINGW2:下载后要设置xgboost代码的保存路径

$ cd /e/algorithm

3:用这段代码下载xgboost。

$ git clone --recursive https://github.com/dmlc/xgboost
$ cd xgboost
$ git submodule init
$ git submodule update

4:打开mingw并编译这个项目。并添加环境路径。5:打开bash和

$ which mingw32-make
to see if you can get path back

6:编译xgboost 输入 xgboost 路径 $ cd/e/算法/xgboost7:输入以下cmd进行编译,也可以自己写一个bat或者shell保存。

$ cd dmlc-core
$ make -j4
$ cd ../rabit
$ make lib/librabit_empty.a -j4
$ cd ..
$ cp make/mingw64.mk config.mk
$ make -j4

8:成功

关于python-2.7 - 如何从 Github 导入 Xgboost 包到 Windows 7 上的 python 2.7?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33889689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com