- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
以前我曾经通过 pip 安装软件包,但现在我尝试使用 pip 安装 Python 库,出现 SSL 错误:
/home/teleduce/.virtualenvs/teleduce_handler/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
SNIMissingWarning
/home/teleduce/.virtualenvs/teleduce_handler/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Could not fetch URL https://pypi.python.org/simple/xlwt/: There was a problem confirming the ssl certificate: [Errno 1] _ssl.c:504: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version - skipping
OpenSSL 1.0.1 14 Mar 2012
SSLv3
TLSv1.2
pip 8.1.2 from /home/teleduce/.virtualenvs/project_name/local/lib/python2.7/site-packages (python 2.7)
Ubuntu 12.04.4 LTS (GNU/Linux 3.8.0-44-generic x86_64)
pip install --upgrade pip
curl https://bootstrap.pypa.io/get-pip.py | python
SSL routines: SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
最佳答案
发生 SSLError 是因为系统 OpenSSL 库版本(编译时链接到您的 Python 的版本)在安装 Python 的那天低于 1.0.1 或您当前的 Python 版本低于 2.7.9/3.4,因为这些都不是真正支持 TLS Python Package Index (PyPI) now requires 1.2 协议(protocol)版本来自 pip
连接。
发行版通常无法在不进行完整操作系统升级的情况下轻松升级旧的 openssl 和系统 Python,这并不总是可取的。您可以从最近的 sources 编译您自己的“非系统”OpenSSL然后尝试编译一个独立的“非系统”Python将其与您刚刚编译的 OpenSSL 链接,但有时由于各种限制,这种方法也不可行。
解决方案
流行的建议,例如 pip install requests[secure] 或 urllib3[secure],通常无法帮助修复 pip
因为 pip itself是 affected并且无法连接到 PyPI 来安装任何东西。我们不能要求 pip 连接到 PyPI 来解决 pip 无法连接到 PyPI 的问题。 :) 要在不升级 Python 的情况下修复它,我们需要手动安装相关包,解决依赖关系:
PyOpenSSL
和 cryptography
(它的 manylinux1
轮子提供更新的 openssl 库); asn1crypto
, cffi
, enum34
, idna
, ipaddress
, pycparser
, six
; pip
10+ 版本,因为旧的 pip 版本并没有真正使用密码学 - 只有标准库的 ssl
模块(如果您的 pip 版本已经是 10 或更高版本,则不需要新的 pip 版本,任何 pip v10+ 都可以)Tested on ancient Ubuntu with old non-working pip and outdated system openssl version.
pip, asn1crypto, enum34, idna, six, ipaddress, pyOpenSSL, cffi, cryptography wheels; and also pycparser (a non-wheel, it will be a tar.gz)
$ python -c "import sys; print('UCS4/UTF-32: mu-manylinux1' if sys.maxunicode > 65535 else 'UCS2/UTF-16: m-manylinux1')"
Python 3 注释 :
cp34-abi3-manylinux1
密码学的轮子可以与
一起使用任何 Python 版本>=3.4 因为 abi3
support Python3 的多个版本,例如 cryptography-2.5-cp34-abi3-manylinux1_x86_64.whl (2.4 MB)
$ mkdir ~/wheels_dir
并将所有下载的包复制(或移动)到该目录。
pip
版本低于 8.1,必须先安装较新的 pip 版本,然后才能继续安装所有其他软件包:
$ pip install --user --no-index ~/wheels_dir/pip-19.0.1-py2.py3-none-any.whl
它将升级 pip 以处理新的 multilinux1 轮格式并帮助避免“此平台上不支持的轮”错误。
$ pip install --user --no-index ~/wheels_dir/*
$ pip3
在 Python 3 中
--user
选项:
$ source bin/activate
$ pip install --no-index ~/wheels_dir/*
Pip 将自动解析正确的安装顺序和依赖项。
Note: Unless you install in a Python virtualenv or venv, it is highly recommended to always use
--user
flag with pip. It then deploys python packages under your home dir in ~/.local/lib/ In fact, this option is always On by default in distro-patched pip versions provided bypython3-pip
andpython-pip
packages in recent versions of popular distros such as Ubuntu, Debian, Fedora, etc. Please try to avoidsudo pip
, as using pip with root access interferes with your OS package manager subsystem (apt, yum, etc) and may affect essential OS components that depend on the distro-supplied system python.
$ pip freeze
(或 Python 3 中的
pip3 freeze
)命令来检查结果并确保已为您的 Python 环境安装了所有包。
pip search colorama
的内容。来自在线 PyPI 存储库。
pyOpenSSL
来查看系统 SSL/TLS 设置的详细摘要。直接lib:
$ python -m OpenSSL.debug
(ModuleNotFoundError 表示未安装 pyOpenSSL 包)
certifi
为将来更新根 SSL 证书集合的好机会。包。
ssl
模块(它是系统 OpenSSL 库的 Python API),没有任何可能的回退到其他库,如
cryptography
.从版本 10 开始,pip 现在可以将 pyOpenSSL 与加密一起使用(如果环境中存在)。
manylinux1
cryptography
之轮包裹
包括 最近的 OpenSSL 库支持所有 TLS 协议(protocol)高达 v1.3,无论您的平台上有什么(PyPI 期望 pip 支持 TLSv1.2)。这就是这个轮子重 2.1 Mb 的原因——文件提供了一个共享的 lib 绑定(bind):
$ strings site-packages/cryptography/hazmat/bindings/_openssl.so | grep OpenSSL -m1
OpenSSL 1.1.1a 20 Nov 2018
$ python -c "from cryptography.hazmat.backends.openssl import backend as b; print b.openssl_version_text()"
OpenSSL 1.1.1a 20 Nov 2018
$ python -c "from OpenSSL import SSL; print SSL.SSLeay_version(0)"
OpenSSL 1.1.1a 20 Nov 2018
$ python -c "import requests; print requests.get('https://www.howsmyssl.com/a/check').json()['tls_version']"
TLS 1.3
The Cryptography wheel contains a statically-linked OpenSSL binding, which ensures that you have access to the most-recent OpenSSL releases without corrupting your system dependencies.
This will allow you to continue to use relatively old Linux distributions (such as LTS releases), while making sure you have the most recent OpenSSL available to your Python programs. (https://cryptography.io/en/latest/installation/)
ssl
模块从 2.7.9 版开始明确支持 PROTOCOL_TLSv1_2 标志,而在 Python 3 中 - 从 3.4 版开始;但 TLSv1.2 连接只能工作
当且仅当 支持 TLSv1.2 的系统范围的 OpenSSL 库是
已经可用 在 Python 被编译并链接到它时在系统中。 TLSv1.2 至少需要 OpenSSL 1.0.1 才能运行,但通常建议使用 OpenSSL 1.0.2(或更高版本)(默认使用 TLSv1.2)。
ssl
实际上,模块已经针对系统 openssl 编译,例如 v1.0.2k,那么在撰写本文时,即使是旧的 pip(例如 v6.0.8)仍然可以使用 PyPI,您甚至不需要密码学为此。检查标准库 Python
ssl
和系统openssl版本:
$ python -c "import ssl; print(ssl.OPENSSL_VERSION)" && openssl version
OpenSSL 0.9.8o 2010 年 6 月 1 日
ssl
在编译/安装 Python 时,模块被硬链接(hard link)到系统提供的 OpenSSL,反之亦然。因此,基本上,如果不重新编译/重新安装 Python 本身(至少应该是 2.7.9+/3.4+ 版本)将其链接到新的系统 openssl 库,就无法利用新的 TLS 协议(protocol)。这是上面
pyopenssl
的地方+
cryptography
方法来拯救。
关于python - 无法在 Ubuntu Linux 中使用 pip 安装 Python 包 : InsecurePlatformWarning, SSLError,tlsv1 警报协议(protocol)版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51646558/
我在网上搜索但没有找到任何合适的文章解释如何使用 javascript 使用 WCF 服务,尤其是 WebScriptEndpoint。 任何人都可以对此给出任何指导吗? 谢谢 最佳答案 这是一篇关于
我正在编写一个将运行 Linux 命令的 C 程序,例如: cat/etc/passwd | grep 列表 |剪切-c 1-5 我没有任何结果 *这里 parent 等待第一个 child (chi
所以我正在尝试处理文件上传,然后将该文件作为二进制文件存储到数据库中。在我存储它之后,我尝试在给定的 URL 上提供文件。我似乎找不到适合这里的方法。我需要使用数据库,因为我使用 Google 应用引
我正在尝试制作一个宏,将下面的公式添加到单元格中,然后将其拖到整个列中并在 H 列中复制相同的公式 我想在 F 和 H 列中输入公式的数据 Range("F1").formula = "=IF(ISE
问题类似于this one ,但我想使用 OperatorPrecedenceParser 解析带有函数应用程序的表达式在 FParsec . 这是我的 AST: type Expression =
我想通过使用 sequelize 和 node.js 将这个查询更改为代码取决于在哪里 select COUNT(gender) as genderCount from customers where
我正在使用GNU bash,版本5.0.3(1)-发行版(x86_64-pc-linux-gnu),我想知道为什么简单的赋值语句会出现语法错误: #/bin/bash var1=/tmp
这里,为什么我的代码在 IE 中不起作用。我的代码适用于所有浏览器。没有问题。但是当我在 IE 上运行我的项目时,它发现错误。 而且我的 jquery 类和 insertadjacentHTMl 也不
我正在尝试更改标签的innerHTML。我无权访问该表单,因此无法编辑 HTML。标签具有的唯一标识符是“for”属性。 这是输入和标签的结构:
我有一个页面,我可以在其中返回用户帖子,可以使用一些 jquery 代码对这些帖子进行即时评论,在发布新评论后,我在帖子下插入新评论以及删除 按钮。问题是 Delete 按钮在新插入的元素上不起作用,
我有一个大约有 20 列的“管道分隔”文件。我只想使用 sha1sum 散列第一列,它是一个数字,如帐号,并按原样返回其余列。 使用 awk 或 sed 执行此操作的最佳方法是什么? Accounti
我需要将以下内容插入到我的表中...我的用户表有五列 id、用户名、密码、名称、条目。 (我还没有提交任何东西到条目中,我稍后会使用 php 来做)但由于某种原因我不断收到这个错误:#1054 - U
所以我试图有一个输入字段,我可以在其中输入任何字符,但然后将输入的值小写,删除任何非字母数字字符,留下“。”而不是空格。 例如,如果我输入: 地球的 70% 是水,-!*#$^^ & 30% 土地 输
我正在尝试做一些我认为非常简单的事情,但出于某种原因我没有得到想要的结果?我是 javascript 的新手,但对 java 有经验,所以我相信我没有使用某种正确的规则。 这是一个获取输入值、检查选择
我想使用 angularjs 从 mysql 数据库加载数据。 这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上 我想获取这个值并通过 angularjs
我正在使用 autoLayout,我想在 UITableViewCell 上放置一个 UIlabel,它应该始终位于单元格的右侧和右侧的中心。 这就是我想要实现的目标 所以在这里你可以看到我正在谈论的
我需要与 MySql 等效的 elasticsearch 查询。我的 sql 查询: SELECT DISTINCT t.product_id AS id FROM tbl_sup_price t
我正在实现代码以使用 JSON。 func setup() { if let flickrURL = NSURL(string: "https://api.flickr.com/
我尝试使用for循环声明变量,然后测试cols和rols是否相同。如果是,它将运行递归函数。但是,我在 javascript 中执行 do 时遇到问题。有人可以帮忙吗? 现在,在比较 col.1 和
我举了一个我正在处理的问题的简短示例。 HTML代码: 1 2 3 CSS 代码: .BB a:hover{ color: #000; } .BB > li:after {
我是一名优秀的程序员,十分优秀!