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/
以清华大学镜像源下载为例:
一、直接使用镜像源下载
二、配置默认使用某镜像源下载
1,在路径C:Usersxxx新建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(包名)