1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| yum install zlib-devel bzip2-devel libffi-devel sqlite-devel -y
cd /opt wget https://www.openssl.org/source/openssl-1.1.1v.tar.gz tar zvxf openssl-1.1.1v.tar.gz cd openssl-1.1.1v ./config --prefix=/usr/local/openssl make && make install
cd /opt wget https://www.python.org/ftp/python/3.10.14/Python-3.10.14.tgz
tar zxvf Python-3.10.14.tgz
cd Python-3.10.14 ./configure --prefix=/usr/local/python3 --with-openssl=/usr/local/openssl --enable-loadable-sqlite-extensions make && make install
ln -sf /usr/local/python3/bin/python3 /usr/bin/python3 ln -sf /usr/local/python3/bin/pip3 /usr/bin/pip3
python3 -V
|