码迷,mamicode.com
首页 > 编程语言 > 详细

python安装出现的证书问题

时间:2019-03-05 11:11:35      阅读:610      评论:0      收藏:0      [点我收藏+]

标签:hosted   simple   could   error   ini   aliyun   python安装   方案   安装   

1. pip install pyenv 安装时出现下图错误

Could not install packages due to an EnvironmentError: HTTPSConnectionPool(host=files.pythonhosted.org, port=443): Max retries exceeded with url: /packages/98/83/07b67ec0f26f61894ab
65cf1e325c2bd8938f8f4379e989ffadedcbb07e1/pyenv-0.0.1.tar.gz (Caused by SSLError(SSLCertVerificationError(1, [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get
 local issuer certificate (_ssl.c:1051))))

技术图片

2. 解决方案:证书问题

2.1 前面加上trusted-host  ;     pip --trusted-host pypi.python.org --trusted-host pypi.org install --trusted-host files.pythonhosted.org pyenv

2.2 或者在%appdata%路径下新建一个pip文件夹,在文件夹下新建一个pip.ini文件,内容如下

[global]
timeout = 6000 
index-url=http://mirrors.aliyun.com/pypi/simple/   #不填也行,使用官方的
[install]
trusted-host = pypi.python.org
    pypi.org
    files.pythonhosted.org
    mirrors.aliyun.com

 

python安装出现的证书问题

标签:hosted   simple   could   error   ini   aliyun   python安装   方案   安装   

原文地址:https://www.cnblogs.com/lobin/p/10475190.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!