CentOS 7インストールPython 3.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