как установить openssl1.0.2t для Python3.7.4 на centos? - PullRequest
0 голосов
/ 19 сентября 2019

Мы используем centos 7 (дистрибутивный образ REHL), который поставляется с версией по умолчанию python2.7.4 и openssl 1.0.2k.

Мы установили Python3.7.4 и последнюю версию openssl1.0.2t.Мы пытаемся запустить python3.7.4 с openssl1.0.2t, но даже после настройки Python3.7.4 с openssl1.0.2t с помощью

1. changing ./Modules/Setup.dist (lines 204 to 210) with installed openssl path (/usr/local/openssl)

2. also passing -with-openssl while configuring python (./configure --with-openssl=[/usr/local/openssl]), но все равно не повезло.

Python 3.7.4 (default, Sep 19 2019, 13:13:47) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import ssl
>>> ssl.OPENSSL_VERSION
'OpenSSL 1.0.2k-fips  26 Jan 2017'

Может ли кто-нибудь помочь, если у него была успешная попытка запустить python3.7.4 с openssl1.0.2t на centos7?

...