Skip to content

Instantly share code, notes, and snippets.

@joglomedia
Last active July 1, 2021 03:05
Show Gist options
  • Save joglomedia/8113863 to your computer and use it in GitHub Desktop.
Save joglomedia/8113863 to your computer and use it in GitHub Desktop.
Install Python 2.7.3 on CentOS 5.x (tested on CentOS 5.10) # (c) 2013 - MasEdi (http://masedi.net/)
#!/bin/bash
# (c) 2013 - MasEdi (http://masedi.net/)
yum groupinstall "Development tools"
yum install zlib-devel
yum install bzip2-devel openssl-devel ncurses-devel automake make
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2
tar zxf Python-2.7.3.tar.bz2
cd Python-2.7.3
./configure --prefix=/usr/local
make && make altinstall
/usr/local/bin/python2.7
set -o vi
wget http://pypi.python.org/packages/source/d/distribute/distribute-0.6.27.tar.gz
tar xf distribute-0.6.27.tar.gz
cd distribute-0.6.27
python2.7 setup.py install
/usr/local/bin/easy_install-2.7 virtualenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment