源码安装openssl ,Python3.9.2

openssl编译安装

wget https://www.openssl.org/source/openssl-1.1.1a.tar.gz

./config --prefix=/usr/local/openssl no-zlib #不需要zlib

make
make install

Python3.9.2  编译安装

https://www.python.org/ftp/python/3.9.2/Python-3.9.2.tgz

Python Release Python 3.9.2 | Python.org

./configure --prefix=/usr/local/python3.9 --enable-shared --with-ssl

或者 ./configure --prefix=/usr/local/python3.9 --with-openssl=/usr/local/openssl

make -j 8

sudo make install

猜你喜欢

转载自blog.csdn.net/soralaro/article/details/124771279