- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在运行 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平台的容量,不过版本限制。
最佳答案
我在 mac OS 上遇到了类似的问题,我无法安装任何东西甚至无法升级 pip
由于 SSL 问题,来自虚拟环境。
sudo chown -R ${whoami} /usr/local/Cellar
其次是
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/
我正在尝试将抓取的 xml 输出写入 json。由于项目不可序列化,抓取失败。 从这个问题来看,它建议您需要构建一个管道,未提供的答案超出了问题 SO scrapy serializer 的范围。 所
有没有一种方法可以通过重载函数来区分参数是在编译时可评估还是仅在运行时可评估? 假设我有以下功能: std::string lookup(int x) { return table::va
我正在使用 MVVM 模式编写一个应用程序。我通过将 View 的 DataContext 属性设置为 ViewModel 的实例来向 View 提供数据。一般来说,我只是从那里使用 Binding
对于一个项目,我正在使用带有简单 python module 的传感器收集多个红外命令。 . 我收到如下字节字符串: commando1= b'7g4770CQfwCTVT9bQDAzVEBMagGR
我有一个计算方法,可以在用户使用 Cartridge 作为我的商店框架结账时计算税费。 税 = 税 * 小数(str(settings.SHOP_DEFAULT_TAX_RATE)) 计算工作正常。然
我正在用 pygame 制作一个绘图程序,我想在其中为用户提供一个选项来保存程序的确切状态,然后在稍后重新加载它。在这一点上,我保存了我的全局字典的副本,然后遍历, pickle 每个对象。 pyga
在 C++11 之前,我可以使用它来使类不可复制: private: MyClass(const MyClass&); MyClass& operator=(const MyClass&); 使用 C
大家好 :) 我在我的 VC++ 项目中使用 1.5.4-all (2014-10-22)(适用于 x86 平台的 Microsoft Visual C++ 编译器 18.00.21005.1)。 我
我有一个 python 文件:analysis.py: def svm_analyze_AHE(file_name): # obtain abp file testdata = pd.
这个问题已经有答案了: How to serialize SqlAlchemy result to JSON? (37 个回答) 已关闭 4 年前。 我正在编写小查询来从 mysql 获取数据数据库,
我是 Python 初学者,我在 JSON 方面遇到了一些问题。在我正在使用的教程中有两个函数: def read_json(filename): data = [] if os.pa
我目前正在开发一个针对 iPad 的基于 HTML5 Canvas/JavaScript 的小型绘图应用程序。它在 Safari 中运行。到目前为止,除了一件事之外,一切都进展顺利。 如果我旋转设备,
以下代码无法使用 Visual Studio 2013 编译: #include struct X { X() = default; X(const X&) = delete;
嗨,我制作了一个文本分类分类器,我在其中使用了它,它返回一个数组,我想返回 jsonresponse,但最后一行代码给我错误 'array(['cycling'], dtype =object) 不可
我使用 Flask 和 Flask-Login 进行用户身份验证。 Flask-Sqlalchemy 将这些模型存储在 sqlite 数据库中: ROLE_USER = 0 ROLE_ADMIN =
如果您尝试发送不可 JSON 序列化的对象(列表、字典、整数等以外的任何对象),您会收到以下错误消息: "errorMessage": "Object of type set is not JSON
我在尝试 move std::vector 时遇到崩溃其中 T显然是不可 move 的(没有定义 move 构造函数/赋值运算符,它包含内部指针) 但为什么 vector 的 move 函数要调用 T
我尝试在用户成功登录后将 token 返回给他们,但不断收到以下错误: 类型错误:“字节”类型的对象不可 JSON 序列化 我该如何解决这个问题?这是我到目前为止的代码: if user:
我是一名优秀的程序员,十分优秀!