首页 > 解决方案 > 无法连接到 HTTPS URL,因为 SSL 模块不可用

问题描述

当我使用 requets 模块获取 url 的文本时,出现错误:

Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/requests-2.18.1-py3.5.egg/requests/adapters.py", line 440, in send
    timeout=timeout
  File "/usr/local/lib/python3.6/site-packages/urllib3-1.21.1-py3.5.egg/urllib3/connectionpool.py", line 588, in urlopen
    conn = self._get_conn(timeout=pool_timeout)
  File "/usr/local/lib/python3.6/site-packages/urllib3-1.21.1-py3.5.egg/urllib3/connectionpool.py", line 250, in _get_conn
    return conn or self._new_conn()
  File "/usr/local/lib/python3.6/site-packages/urllib3-1.21.1-py3.5.egg/urllib3/connectionpool.py", line 821, in _new_conn
    raise SSLError("Can't connect to HTTPS URL because the SSL "
urllib3.exceptions.SSLError: Can't connect to HTTPS URL because the SSL module is not available.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "excuteUpdate.py", line 123, in <module>
    downloadList = getapkList(list)
  File "excuteUpdate.py", line 35, in getapkList
    text = requests.get(detail_path).text
  File "/usr/local/lib/python3.6/site-packages/requests-2.18.1-py3.5.egg/requests/api.py", line 72, in get
    return request('get', url, params=params, **kwargs)
  File "/usr/local/lib/python3.6/site-packages/requests-2.18.1-py3.5.egg/requests/api.py", line 58, in request
    return session.request(method=method, url=url, **kwargs)
  File "/usr/local/lib/python3.6/site-packages/requests-2.18.1-py3.5.egg/requests/sessions.py", line 502, in request
    resp = self.send(prep, **send_kwargs)
  File "/usr/local/lib/python3.6/site-packages/requests-2.18.1-py3.5.egg/requests/sessions.py", line 612, in send
    r = adapter.send(request, **kwargs)
  File "/usr/local/lib/python3.6/site-packages/requests-2.18.1-py3.5.egg/requests/adapters.py", line 514, in send
    raise SSLError(e, request=request)
requests.exceptions.SSLError: Can't connect to HTTPS URL because the SSL module is not available.

我已经安装了 ssl-1.0.2,并使用了命令

./configure --with-ssl=/usr/local/ssl
make
make install

但它没有用;

这是为了获取要解析的 url 文本。

代码是这样的:

text = requests.get(detail_path).text

标签: python-3.xsslsuse

解决方案


此错误的另一个可能原因(详见此 Stack Overflow 帖子)是您有一个名为ssl.py的自己的文件,您的脚本将导入此文件并导致出现相同的错误消息。


推荐阅读