pip install xgboost换成国内源
时间: 2023-09-26 19:13:40 浏览: 160
xgboost安装
可以使用以下命令将pip源更改为国内源:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xgboost
```
或者使用阿里云源:
```
pip install -i https://mirrors.aliyun.com/pypi/simple/ xgboost
```
这样就可以在国内快速安装xgboost了。
阅读全文