Skip to content

Instantly share code, notes, and snippets.

@lhotakj
Last active December 15, 2018 19:33
Show Gist options
  • Save lhotakj/a22d40e2ff493555a6da51ad2cfc6c98 to your computer and use it in GitHub Desktop.
Save lhotakj/a22d40e2ff493555a6da51ad2cfc6c98 to your computer and use it in GitHub Desktop.
centos-install-python-3.7.1
# https://linuxhint.com/install_python3_centos7/
# https://tecadmin.net/install-python-3-7-on-centos/
# alt
cd /tmp
sudo yum groupinstall -y "Development Tools"
wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tar.xz
tar -xJf Python-3.7.1.tar.xz
cd Python-3.7.1
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment