gpt4 book ai didi

Python 3.7 无法连接到 HTTPS URL,因为 SSL 模块不可用

转载 作者:太空狗 更新时间:2023-10-29 20:31:46 26 4
gpt4 key购买 nike

我正在运行 centos 6.10 的专用服务器上安装 Python 3.7在跳过一些障碍尝试执行此操作后,我遇到了另一个错误。使用 Python 3.7 尝试保持最新状态,pip 安装出现 SSL 问题是一个相当普遍的问题。我得出的结论是,解决此问题的最佳方法是获取正确版本的 OpenSSL。所以我这样做了,并编辑了我的 python modules/Setup.dist 文件,重新配置它,重新运行 make altinstall,虽然一切看起来都很好。由于某些原因,我之前运行这个python的命令Python3.7突然变成了无法识别的命令,而在Python3.7目录下有一个文件夹python 现在执行时(编辑环境路径后打开 Python3.7。之前情况并非如此,它只是 Python3.7 有人知道这里会发生什么吗?

此外,我对整个 SSL 的事情都快无能为力了,我已经阅读了所有关于 SSL 的文章。这是我最近执行的一些命令的列表:

#Unpacked Python3.7 into /usr/src directory
./configure --enable-optimizations --enable-loadable-sqlite-extensions
make altinstall

#installation failed from no '_ctypes' module

yum install libffi-devel

#repeat configure above
#yaaay python
#Successfully installed pip-10.0.1 setuptools-39.0.1 was the final message of the installation

Python3.7 -m venv /my/project/directory/ENV
pip install {library}

#this is where my issues began with SSL

日志:

(ENV) [root@s1.1.1.1 ProjectDirectory]# pip3 install twisted
pip is configured with locations that require TLS/SSL, however, the SSL module in Python is not available.
Collecting twisted
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/twisted/
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/twisted/
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/twisted/
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/twisted/
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/twisted/
Could not fetch URL https://pypi.org/simple/twisted/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/twisted/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Could not find a version that satisfies the requirement twisted (from versions: )
No matching distribution found for twisted
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 SSLmodule is not available.")) - skipping

所以我觉得还不错。不用担心。最新版本的 Python 甚至无法立即获得 pip3。精彩的。好吧,我开始像我们一样搜索谷歌并得出结论,每个人都只是再次重新配置他们的 python 并且它神奇地起作用了。不知道为什么,但是没关系。我很喜欢它。我找到了这篇文章:

https://techglimpse.com/install-python-openssl-support-tutorial/

想想还不错。如果我可以获得 python3.7 SSL,那么它应该可以让 pip3 正常工作吗?错误的。不幸的是,如果我以上面提到的新奇怪方式启动 Python3.7,并键入 import ssl,我会收到此错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/src/Python-3.7.0/Lib/ssl.py", line 98, in <module>
import _ssl # if we can't import it, let the error propagate
ModuleNotFoundError: No module named '_ssl'

谁能给我一些帮助?我有点迷失在海洋中,而且我不会游泳......任何东西都会很棒,但我是这个服务器管理员的菜鸟所以越简单越好 :) 谢谢你提前。

编辑:顺便说一下

yum install openssl

yum install openssl-devel

两者都会导致“已安装”标志...所以我认为这不是另一种解决方案。但是,当我手动安装时,我使用了 1.1.1 版,因为我知道 3.7 出于某种原因放弃了对几个不同版本的 OpenSSL 的支持。我认为已经安装了 yum 的是 1.0.2。不知道有没有centos 6.10平台的容量,不过版本限制。

最佳答案

我在 ma​​c OS 上遇到了类似的问题,我无法安装任何东西甚至无法升级 pip由于 SSL 问题,来自虚拟环境。

对我有用的是在虚拟环境中执行以下操作

  1. sudo chown -R ${whoami} /usr/local/Cellar其次是

  2. brew install openssl

什么是${whoami}在第一个命令中?

这是一个占位符;当你运行命令时你应该放在那里的是你当前的实际用户。

如果您不知道您的用户,请在命令行中输入

whoami

输出是你的用户。所以如果你输入它并得到 johnsmith作为输出,当您运行第一个命令时,您会将“${whoami}”替换为“johnsmith”,如下所示:

sudo chown -R johnsmith /usr/local/Cellar

关于Python 3.7 无法连接到 HTTPS URL,因为 SSL 模块不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52566503/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com