pip 使用中科大镜像
时间: 2024-04-14 16:20:03 浏览: 84
pip 使用镜像
5星 · 资源好评率100%
怎么配置?
您可以通过以下步骤配置pip使用中科大镜像:
1. 打开命令行终端(Windows下为cmd),输入以下命令:
```
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/
```
2. 执行完毕后,可以使用以下命令检查配置是否生效:
```
pip config get global.index-url
```
如果返回值为 https://pypi.mirrors.ustc.edu.cn/simple/,则说明配置成功。
这样配置后,pip将会使用中科大镜像源下载Python包,速度会有所提高。
阅读全文