使用pip安装库时,下载软件包特别慢,是因为下载会默认请求python官网的镜像源。而官网的镜像部署在国外,网络条件不好时,会下载特别慢。为了解决这个痛点,我们可以把下载镜像源设置为国内的镜像源,直接从国内下载,比如清华镜像源、豆瓣镜像源等等。
1、国内常用镜像源
- 清华大学(推荐)
https://pypi.tuna.tsinghua.edu.cn/simple
- 阿里云
-
http://mirrors.aliyun.com/pypi/simple
- 豆瓣
-
http://pypi.douban.com/simple/
- 中国科技大学
-
https://pypi.mirrors.ustc.edu.cn/simple/
- 华中理工大学
-
http://pypi.hustunique.com/
- 山东理工大学
-
http://pypi.sdutlinux.org/
- 网易
-
http://mirrors.163.com
2、临时使用方法
每次安装库的时候,安装命令中添加镜像即可。
pip install 库名 -i 镜像地址
比如使用清华源安装pygame库:
pip install pygame -i https://pypi.tuna.tsinghua.edu.cn/simple
3、永久设置方法
- Windows中,进入 C:\Users\当前使用用户 文件夹
- 创建pip文件夹
- 在新创建的pip文件夹中,创建文本文档,修改文件名及格式为 pip.ini
文章来源:https://www.toymoban.com/news/detail-834613.html
- 以记事本方式打开 pip.ini 文件,复制粘贴以下内容(清华源),并保存文件即可。
-
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host = pypi.tuna.tsinghua.edu.cn
可根据自己的实际需求,修改使用的镜像地址。文章来源地址https://www.toymoban.com/news/detail-834613.html
到了这里,关于Python-pip国内常用镜像及使用方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!