Centos7.6安装python3.6.8

yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel gcc gcc-c++ openssl -y
wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tar.xz
ls
tar xf Python-3.6.8.tar.xz
ls
cd Python-3.6.8/
ls
mkdir /usr/local/python3
ls
./configure --prefix=/usr/local/python3
make -j16
make -j16 install
ln -s /usr/local/python3/bin/python3.6 /usr/bin/python3
ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3
python3
python3 -V

你可能感兴趣的:(Centos7.6安装python3.6.8)