Python pip install之SSL异常处理操作
异常内容:
C:\Users\ccwant>pipinstallrequests
Collectingrequests
Retrying(Retry(total=4,connect=None,read=None,redirect=None,status=None))afterconnectionbrokenby'SSLError(SSLError(1,'[SSL:CERTIFICATE_VERIFY_FAILED]certificateverifyfailed(_ssl.c:645)'),)':/simple/requests/
Retrying(Retry(total=3,connect=None,read=None,redirect=None,status=None))afterconnectionbrokenby'SSLError(SSLError(1,'[SSL:CERTIFICATE_VERIFY_FAILED]certificateverifyfailed(_ssl.c:645)'),)':/simple/requests/
Retrying(Retry(total=2,connect=None,read=None,redirect=None,status=None))afterconnectionbrokenby'SSLError(SSLError(1,'[SSL:CERTIFICATE_VERIFY_FAILED]certificateverifyfailed(_ssl.c:645)'),)':/simple/requests/
Retrying(Retry(total=1,connect=None,read=None,redirect=None,status=None))afterconnectionbrokenby'SSLError(SSLError(1,'[SSL:CERTIFICATE_VERIFY_FAILED]certificateverifyfailed(_ssl.c:645)'),)':/simple/requests/
Retrying(Retry(total=0,connect=None,read=None,redirect=None,status=None))afterconnectionbrokenby'SSLError(SSLError(1,'[SSL:CERTIFICATE_VERIFY_FAILED]certificateverifyfailed(_ssl.c:645)'),)':/simple/requests/
CouldnotfetchURLhttps://pypi.org/simple/requests/:Therewasaproblemconfirmingthesslcertificate:HTTPSConnectionPool(host='pypi.org',port=443):Maxretriesexceededwithurl:/simple/requests/(CausedbySSLError(SSLError(1,'[SSL:CERTIFICATE_VERIFY_FAILED]certificateverifyfailed(_ssl.c:645)'),))-skipping
Couldnotfindaversionthatsatisfiestherequirementrequests(fromversions:)
Nomatchingdistributionfoundforrequests
处理办法:
打开以下目录,并创建pip文件夹
C:\Users\用户\AppData\Roaming
进入pip文件夹,创建pip.ini文件,内容如下
[global]
index-url=http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
此配置的作用是修改pip的安装源,此处修改为阿里的源,然后使用pipinstall安装就不会报错了
补充知识:处理Python3中使用pipinstall时提示"SSL:CERTIFICATE_VERIFY_FAILED"
CentOS7使用官方yum源安装了Python3和pip(yum搜不到python3的话请安装epel-release)
[root@client0yum.repos.d]#python3--version
Python3.6.8
[root@client0yum.repos.d]#pip3--version
pip8.1.2from/usr/lib/python3.6/site-packages(python3.6)
使用pip安装包时会提示你pip版本过低,建议使用pipinstall--upgradepip命令来升级.
而使用该命令时则会弹出一连串错误提示,其中包含关键字"SSL:CERTIFICATE_VERIFY_FAILED"
这时的处理办法是跳过pip的SSL验证
使用命令
pip3install--trusted-hostpypi.org--trusted-hostfiles.pythonhosted.org
即可.
以上这篇Pythonpipinstall之SSL异常处理操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。