pip下载慢,更换国内镜像源
时间: 2024-01-04 21:03:17 浏览: 112
12-3 pip 升级和镜像源1
更换国内镜像源可以加速pip下载速度,具体步骤如下:
1. 打开pip的配置文件,位置在`~/.pip/pip.conf`(Linux/MacOS)或`%APPDATA%\pip\pip.ini`(Windows)。
2. 如果文件不存在,可以新建一个,然后添加以下内容:
```
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
```
其中`https://pypi.tuna.tsinghua.edu.cn/simple`可以替换成其他国内镜像源的地址,例如:
- 清华大学:`https://pypi.tuna.tsinghua.edu.cn/simple`
- 阿里云:`http://mirrors.aliyun.com/pypi/simple/`
- 中科大:`https://pypi.mirrors.ustc.edu.cn/simple/`
- 华中理工大学:`https://pypi.hustunique.com/`
3. 保存文件,然后重新运行`pip`命令即可使用国内镜像源进行下载。
注意:不同的镜像源可能会有一些库没有同步过来,如果出现下载失败等问题,可以尝试更换其他镜像源。
阅读全文