python使用pip出错、显示ssl_解决pip安装时出现SSLError的问题

在使用pip install selenium时遇到错误:

Could not install packages due to an EnvironmentError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Max retries exceeded with url: /packages/57/bc/17164fd471ccdf0df3a992c710c0c3c47743462ff41ab72a02c6ede96e90/selenium-3.12.0-py2.py3-none-any.whl (Caused by SSLError(SSLError("bad handshake: Error([(‘SSL routines‘, ‘tls_process_server_certificate‘, ‘certificate verify failed‘)],)",),))

这个时候我们需要更新安装源就能解决此问题:

首先,C盘》用户》登陆账户下 新建pip文件夹(如果已有不新建)

在pip文件下,新建一个文本文档,修改为:pip.ini

用记事本打开pip.ini输入如下配置:

[global]

index-url = http://pypi.douban.com/simple

trusted-host = pypi.douban.com

disable-pip-version-check = true

timeout = 120

[list]

format = columns

note:

index-url 这里设置的为豆瓣源

trusted-host 意思是信任这个地址(这就免去了ssl验证)

disable-pip-version-check = true 设置不检查版本

format = columns 这里是设置使用pip list命令时输出的样式

保存成功后,在cmd 输入pip config list,效果如下图,说明已生效

然后再次更新,安装成功

你可能感兴趣的:(python使用pip出错,显示ssl)