将pip的下载源更换为https://pypi.tuna.tsinghua.edu.cn/simple
时间: 2024-01-18 14:03:03 浏览: 133
pip使用豆瓣源安装或者更改为其他源
好的,更换pip的下载源为https://pypi.tuna.tsinghua.edu.cn/simple可以通过以下命令来完成:
```
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
执行完毕后,pip的下载源就会被更换为清华大学的镜像源。您以后使用pip下载Python包时,速度将会更快。请注意,此设置将对所有的pip命令生效。
阅读全文