Skip to content

Instantly share code, notes, and snippets.

@ToddG
Created July 10, 2012 03:19
Show Gist options
  • Save ToddG/3080750 to your computer and use it in GitHub Desktop.
Save ToddG/3080750 to your computer and use it in GitHub Desktop.
intalling python2.7 on centos 6.2
#from https://mythinkpond.wordpress.com/2011/12/28/how-to-upgrade-to-python-2-7-on-centos/
#
# Note: installs python27 (and pip) into /usr/local/bin
# I added this to update my enviroment:
#
# new file: /etc/profile.d/local-bin.sh
# contains the following line:
#
# export PATH=$PATH:/usr/local/bin
#
yum -y groupinstall 'Development Tools'
yum -y install openssl-devel* ncurses-devel* zlib*.x86_64
yum -y install bzip2 bzip2-devel bzip2-libs
#Next download the latest tar/gzip/tgz available here:
#http://python.org/ftp/python/2.7/
#Download the latest available at this time
curl -O http://python.org/ftp/python/2.7/Python-2.7.tgz
#Unzip/expand file
tar xfz Python-2.7.tgz
#Change Directory to the unzipped folder
cd Python-2.7
#read README file or you can follow the lines below
./configure
#you could also run configure with threads and shared enabled
#./configure --prefix=/opt/python2.7 --with-threads --enable-shared
#Compile
make
#Install
make install
# Exit from your shell and open a new shell/SSH session
# Use the command below to display which path of python is currently active
which python
#To verify if the install succeeded
python -V
#Use UPPERCASE 'V' - not lower-case.
#Output will be "Python 2.7"
#Sometimes you may need to exit out of your shell
#and them come back in to see the version changes.
#So best exit your current shell prompt and reopen
#a new before checking the version.
#You’re all set. You’ve just upgraded to Python 2.7.
#The next logical step that you need to perform is to install the setup tools that allows you to install modules. (Please note that setuptools is not available for Python 3.0+, instead use Distrubute available here – http://pypi.python.org/pypi/distribute)
#Download the latest setuptools for your version of Python (2.7 in this case) from here:
#http://pypi.python.org/pypi/setuptools#downloads
curl -O http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg
chmod 775 setuptools-0.6c11-py2.7.egg
sh setuptools-0.6c11-py2.7.egg
#This should install the egg here: /usr/local/lib/python2.7/site-packages/
#Next you want to install “PIP”, this enables the download and install of modules in Python:
curl -O http://pypi.python.org/packages/source/p/pip/pip-1.0.tar.gz
tar xvfz pip-1.0.tar.gz
cd pip-1.0
../python setup.py install # may need to be root</pre>
#Now you’re all set. Suppose you wanted to install a module called ‘simplejson’.
#You can now do this using command syntax like this:
pip install simplejson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment