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

关于windows下 使用Anaconda3安装的python无法使用ssl模块问题.关联pip无法下载https

时间:2019-05-19 10:26:04      阅读:929      评论:0      收藏:0      [点我收藏+]

标签:ken   last   ssl   tls   connect   使用   tps   windows   simple   

关联错误:
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘SSLError("Can‘t connect to HTTPS URL because the SSL module is not available.")‘: /simple/pip/ Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘SSLError("Can‘t connect to HTTPS URL because the SSL module is not available.")‘: /simple/pip/ Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘SSLError("Can‘t connect to HTTPS URL because the SSL module is not available.")‘: /simple/pip/ Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘SSLError("Can‘t connect to HTTPS URL because the SSL module is not available.")‘: /simple/pip/ Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘SSLError("Can‘t connect to HTTPS URL because the SSL module is not available.")‘: /simple/pip/ Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host=‘pypi.org‘, port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can‘t connect to HTTPS URL because the SSL module is not available.")) - skipping Requirement already up-to-date: pip in d:\anaconda3\lib\site-packages (18.1) pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host=‘pypi.org‘, port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can‘t connect to HTTPS URL because the SSL module is not available.")) - skipping
关联错误2:

>>> import ssl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\ProgramData\Anaconda3\lib\ssl.py", line 101, in <module>
    import _ssl             # if we can't import it, let the error propagate
ImportError: DLL load failed: The operating system cannot run %1.

原因:找不到libeay32.dll.因为没有把anacoda3 dll库目录加到path
想正常使用需要把类似以下路径加入PATH中

C:\Anaconda3;
C:\Anaconda3\Scripts;
C:\Anaconda3\Library\bin

大多数人只加了 C:\Anaconda3;C:\Anaconda3\Scripts; 所以才导致这个问题.
技术图片

关于windows下 使用Anaconda3安装的python无法使用ssl模块问题.关联pip无法下载https

标签:ken   last   ssl   tls   connect   使用   tps   windows   simple   

原文地址:https://www.cnblogs.com/lovesKey/p/10887964.html

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