pip安装第三方库报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))...

时间:2019-07-12
本文章向大家介绍pip安装第三方库报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))...,主要包括pip安装第三方库报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))...使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

pip安装第三方库时报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))...,详细报错见下图:

报错原因:

国外镜像源连接问题导致

解决:

改为国内镜像源下载

常用国内源:

清华: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/

以清华大学镜像源下载为例:

一、直接使用镜像源下载

安装指令:pip install xxx(包名) -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn

-i :后为镜像源地址

--trusted-host :后边指的是host,例清华大学镜像源地址为 https://pypi.tuna.tsinghua.edu.cn/simple/,host就是指http://和/之间的部分,即pypi.tuna.tsinghua.edu.cn

备注:其他镜像源下载,-i,--trusted-host后部分更新为使用的镜像源即可,例,改为豆瓣镜像源下载,

   指令为:pip install xxx(包名) -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

二、配置默认使用某镜像源下载

1,在路径C:\Users\xxx新建pip目录,在该目录下新建pip.ini文件,将下面内容复制到pip.ini文件中,并保存

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn

2,直接pip安装第三方包

指令:pip install xxx(包名)

原文地址:https://www.cnblogs.com/mini-monkey/p/11175485.html