centos7python3.9没有ssl
时间: 2023-10-18 21:10:30 浏览: 95
Centos7-python3.6.8-离线rpm包
5星 · 资源好评率100%
在 CentOS 7 上安装 Python 3.9 后,如果没有 SSL 支持,可以尝试以下方法来解决:
1. 安装 OpenSSL 和 OpenSSL-devel:
```bash
$ sudo yum install openssl openssl-devel
```
2. 重新编译 Python 3.9:
```
$ cd Python-3.9.0
$ ./configure --with-ssl
$ make
$ sudo make install
```
3. 验证 SSL 是否可用:
```bash
$ python3.9 -c "import ssl; print(ssl.OPENSSL_VERSION)"
```
如果输出了 OpenSSL 的版本信息,则说明 SSL 已经正常工作。
阅读全文