python使用国内源
时间: 2023-09-11 20:05:27 浏览: 78
python使用国内镜像.docx
如果您使用pip安装Python包时下载速度较慢,可以考虑使用国内源来加速下载。以下是一些常用的国内源:
- 清华大学开源软件镜像站:https://pypi.tuna.tsinghua.edu.cn/simple/
- 阿里云PyPI镜像:http://mirrors.aliyun.com/pypi/simple/
- 中国科学技术大学PyPI镜像:https://pypi.mirrors.ustc.edu.cn/simple/
您可以在使用pip安装Python包时添加参数`-i`指定使用的源,例如:
```
pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple/
```
这样就可以使用清华大学的镜像站来下载安装包,下载速度应该会快很多。
阅读全文