📜  安装 xgboost - Python (1)

📅  最后修改于: 2023-12-03 15:39:06.667000             🧑  作者: Mango

安装 XGBoost - Python

XGBoost 是一种高效的机器学习算法库,可以用于分类、回归和排名问题。在 Python 中使用 XGBoost 时,需要使用其 Python 包 xgboost。

安装
1. 使用 pip 安装

在命令行中运行以下命令:

pip install xgboost
2. 从源代码安装

2.1 下载源代码

可以从 XGBoost 的官方 GitHub 仓库中下载源代码:

git clone --recursive https://github.com/dmlc/xgboost

2.2 编译和安装

进入源代码目录后,可以运行以下命令:

cd xgboost
mkdir build
cd build
cmake ..
make -j4
cd ../python-package
python setup.py install
3. 使用 Anaconda 安装

如果已安装 Anaconda,可以使用以下命令安装 xgboost:

conda install -c conda-forge xgboost
验证安装

在 Python 中,可以尝试导入 xgboost 并检查其版本来验证安装是否成功:

import xgboost as xgb
print(xgb.__version__)

输出应该为安装的 XGBoost 版本号。