报错ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'OpenSSL 1.1.0i 14 Aug 2018'.
时间: 2023-11-15 12:56:24 浏览: 141
这个错误是因为你的 Python 环境中的 `urllib3` 库版本过高,而你的 OpenSSL 版本过低所导致的。你可以尝试升级 OpenSSL 版本或者降低 `urllib3` 库的版本来解决这个问题。
如果你使用的是 Anaconda 环境,可以使用以下命令升级 OpenSSL:
```
conda install openssl=1.1.1
```
如果你使用的是 pip 安装的 Python 环境,可以使用以下命令升级 OpenSSL:
```
pip install pyOpenSSL==19.0.0
```
如果以上方法都无法解决问题,你可以尝试重新编译 Python 环境中的 `ssl` 模块,或者重新安装 Python 环境。
相关问题
pyhton报"urllib3 v2.0 only supports OpenSSL 1.1.1+, currently " ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with OpenSSL 1.1.0i 14 Aug 2018. See:
这个错误是因为你的Python中的ssl模块使用的是OpenSSL 1.1.0i版本,而urllib3 v2.0版本只支持OpenSSL 1.1.1+版本。要解决这个问题,你需要升级你的OpenSSL版本。
如果你是在Linux上使用Python,可以使用以下命令升级OpenSSL:
```
sudo apt-get update
sudo apt-get install libssl-dev
```
如果你是在Windows上使用Python,可以下载OpenSSL 1.1.1+版本并进行安装。安装完成后,将安装目录添加到系统环境变量中。
如果你是使用Anaconda或者Miniconda,可以使用以下命令安装OpenSSL:
```
conda install openssl
```
安装完成后,重新启动Python解释器即可。
python中报"urllib3 v2.0 only supports OpenSSL 1.1.1+, currently " ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with OpenSSL 1.1.0i 14 Aug 2018. See
这个错误是由于你的 Python 环境中的 `ssl` 模块使用的 OpenSSL 版本不符合 `urllib3` 的要求。为了解决这个问题,你需要更新你的 OpenSSL 版本。
如果你使用的是 Linux 或 macOS 系统,你可以通过包管理器来升级 OpenSSL。例如,如果你使用的是 Ubuntu 系统,可以通过以下命令升级 OpenSSL:
```
sudo apt-get update
sudo apt-get install openssl
```
如果你使用的是 macOS 系统,可以通过 Homebrew 包管理器来升级 OpenSSL:
```
brew update
brew install openssl
```
如果你使用的是 Windows 系统,你可以从 OpenSSL 官网下载最新版本的 OpenSSL,并按照官方文档进行安装。
安装完 OpenSSL 后,你需要重新编译 Python 的 `ssl` 模块,使其链接到新的 OpenSSL 库。具体步骤如下:
1. 打开命令行界面,进入 Python 的安装目录中的 `Modules/_ssl` 目录。
2. 运行以下命令,生成 `_ssl.c` 文件:
```
python _ssl.c.py openssl_dir=<path-to-openssl> [debug]
```
其中 `<path-to-openssl>` 是你安装 OpenSSL 的路径,`[debug]` 是可选参数,表示生成调试版本的 `_ssl.c` 文件。
例如,如果你在 macOS 系统上使用 Homebrew 安装了 OpenSSL,那么 `<path-to-openssl>` 可能是 `/usr/local/opt/openssl`。
3. 运行以下命令,编译 `_ssl` 模块:
```
python setup.py build_ssl
```
4. 运行以下命令,安装 Python:
```
python setup.py install
```
这样,你就可以在 Python 中使用最新版本的 OpenSSL 和 `urllib3` 了。
阅读全文