Python中pip的SSL异常

Posted 我也是个傻瓜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中pip的SSL异常相关的知识,希望对你有一定的参考价值。

使用python中的pip安装一些组件,都报错,与 SSL有关:

Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by \'SSLError(SSLError(1, \'_ssl.c:504: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version\'),)\': /simple/pip/

解决方案

(1)在系统目录C:\\Users\\用户\\AppData\\Roaming新建pip文件夹;

(2)在pip文件夹下新建pip.ini文件,并写入如下配置:

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = mirrors.aliyun.com

 

一些国内的pip安装源:

阿里云 http://mirrors.aliyun.com/pypi/simple/ 

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 

豆瓣http://pypi.douban.com/simple/ 

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 

中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

切换了国内的安装源,安装就正常了。

以上是关于Python中pip的SSL异常的主要内容,如果未能解决你的问题,请参考以下文章

搭建docker-python环境时提示WARNING: pip is configured with locations that require TLS/SSL, however the ssl(

python2和python3 在windows下公用 导致python2 pip无法使用 报ssl的错误

“pip 配置了需要 TLS/SSL 的位置,但是 Python 中的 ssl 模块不可用”

SSL:来自 Ubuntu 16.0.4 中 Python pip 的 CERTIFICATE_VERIFY_FAILED 错误

解决Linux 安装python3 .5 解决pip 安装无法成功问题ssl安全拦截无法pip安装库问题

Windows系统下Python使用pip安装第三方包报错SSL模块不可用