Mevcut Python kurulumunu yeniden bağlayamazsınız ve kaynaktan başka bir Python dağıtımı inşa etmeniz gerekir. Python oluştururken, adapte gerekir CPPFLAGS
, LDFLAGS
ve LD_LIBRARY_PATH
env değişkenler. Özel OpenSSL’yi kurduğunuzu varsayarak /path/to/openssl
:
$ cd /path/with/Python/sources/unpacked/
$ export LDFLAGS="-L/path/to/openssl/lib/ -L/path/to/openssl/lib64/"
$ export LD_LIBRARY_PATH="/path/to/openssl/lib/:/path/to/openssl/lib64/"
$ export CPPFLAGS="-I/path/to/openssl/include -I/path/to/openssl/include/openssl"
$ ./configure --prefix=/path/to/custom/python/
$ make
$ make install
Şimdi Python /path/to/custom/python/
, özel OpenSSL'yi kullanacak:
$ /path/to/custom/python/bin/python -c "import ssl; print(ssl.OPENSSL_VERSION)"
OpenSSL 1.1.0h 27 Mar 2018