Last active
March 5, 2018 13:39
-
-
Save shadowbq/57e194fb2331a3cdb0dae6231c1611e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ yum update | |
$ sudo yum install gcc libtool perl-core zlib-devel openssl-devel libxslt-devel libxml-devel libyaml-devel -y | |
$ sudo update-ca-trust | |
$ cd /usr/src/ | |
$ wget https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz | |
$ tar zxvf Python-2.7.10.tgz | |
$ cd Python-2.7.10/ | |
$ ./configure | |
$ make | |
$ sudo make altinstall | |
$ /usr/local/lib/python2.7.10/bin/python -V | |
Python 2.7.10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Centos Installation of Python 2.7.10 (likely final version of Python 2.7.x)