栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

python--切换pip镜像源,加速软件包的安装

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python--切换pip镜像源,加速软件包的安装

用pip下载一些软件包,有时候会非常的慢,有时达到不可接受的程度   。
这是因为pip安装软件时,默认使用的是Python官方的镜像源

镜像源 默认镜像源

pip安装软件包时,默认使用的镜像源是:https://pypi.org/simple/

因为此镜像源不在国内,所以受网络影响较大,下载速度慢且易导致连接超时

常用国内镜像源
维护单位名称镜像源地址
清华https://pypi.tuna.tsinghua.edu.cn/simple
阿里云http://mirrors.aliyun.com/pypi/simple/
中国科技大学https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学http://pypi.hustunique.com/
山东理工大学http://pypi.sdutlinux.org/
豆瓣http://pypi.douban.com/simple/
修改默认镜像源 临时修改

通过参数添加信任主机或指定源

  • -i, --index-url 指定一个符合PEP 503的软件包存储库 base URL of the Python Package Index (default http://mirrors.aliyun.com/pypi/simple/). This should point to a repository compliant with PEP 503 (the simple repository API) or a local directory laid out in the same format.
  • –extra-index-url 声明备用源 Extra URLs of package indexes to use in addition to --index-url. Should follow the same rules as --index-url.
  • –trusted-host 声明放开对非https地址源的访问限制 Mark this host as trusted, even though it does not have valid or any HTTPS.

使用示例如下:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pdfplumber
pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com pdfplumber
pip install pillow -i http://mirrors.aliyun.com/pypi/simple/ --extra-index-url https://pypi.python.org/simple --trusted-host mirrors.aliyun.com
永久修改 windows
  • 在用户目录下创建pip目录【如C:UsersABCpip】,并在此目录中创建pip.ini文件
  • pip.ini文件内容如下:
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
Linux下
  • 创建或修改~/.pip/pip.conf文件
  • pip.conf文件的内容如下:
[global]
timeout = 6000
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
use-mirrors =true
mirrors =http://mirrors.aliyun.com/pypi/simple/
trusted-host =mirrors.aliyun.com
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/529685.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号