pip安装的清华源的地址
时间: 2023-11-27 17:47:51 浏览: 172
pip使用清华镜像源安装.md
清华大学开源软件镜像站提供了pip的清华源,其地址为:https://pypi.tuna.tsinghua.edu.cn/simple/。您可以在使用pip安装Python包时加上参数-i指定清华源来加速下载。例如:
```shell
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
```
阅读全文