У меня установлена эта версия openssl в CentOS:
# openssl version
OpenSSL 1.0.2o 27 Mar 2018
У меня есть altinstall из Python (Python 3.6.5).
Когда я пытаюсь обновить Pip, я получаю этоошибка:
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Я проверил Python и обнаружил, что он не подключен к openssl.Как я могу подключить его к этому altinstall?
# python3.6 -c "import ssl; print(ssl.OPENSSL_VERSION)"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/local/lib/python3.6/ssl.py", line 101, in <module>
import _ssl # if we can't import it, let the error propagate
ModuleNotFoundError: No module named '_ssl'
Попытка установить модуль ssl:
# pip3.6 install ssl
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.