📅  最后修改于: 2023-12-03 15:39:06.667000             🧑  作者: Mango
XGBoost 是一种高效的机器学习算法库,可以用于分类、回归和排名问题。在 Python 中使用 XGBoost 时,需要使用其 Python 包 xgboost。
在命令行中运行以下命令:
pip install xgboost
可以从 XGBoost 的官方 GitHub 仓库中下载源代码:
git clone --recursive https://github.com/dmlc/xgboost
进入源代码目录后,可以运行以下命令:
cd xgboost
mkdir build
cd build
cmake ..
make -j4
cd ../python-package
python setup.py install
如果已安装 Anaconda,可以使用以下命令安装 xgboost:
conda install -c conda-forge xgboost
在 Python 中,可以尝试导入 xgboost 并检查其版本来验证安装是否成功:
import xgboost as xgb
print(xgb.__version__)
输出应该为安装的 XGBoost 版本号。