CentOS7 安装Python3.7.7

➜ yum install wget vim git gcc openssl-devel bzip2-devel libffi-devel -y
➜ wget https://www.python.org/ftp/python/3.7.7/Python-3.7.7.tar.xz
➜ tar Jxvf Python-3.7.7.tar.xz
➜ cd Python-3.7.7
➜ ./configure --with-ssl --enable-optimizations --prefix=/usr/local/python3
➜ make && make install
➜ python3 --version

猜你喜欢

转载自blog.csdn.net/youshaoduo/article/details/105433069