Skip to content

Instantly share code, notes, and snippets.

@inlanger
Forked from lukaslundgren/python27_on_debian.sh
Created March 7, 2014 09:41
Show Gist options
  • Save inlanger/9408538 to your computer and use it in GitHub Desktop.
Save inlanger/9408538 to your computer and use it in GitHub Desktop.
apt-get install build-essential libsqlite3-dev zlib1g-dev libncurses5-dev libgdbm-dev libbz2-dev libreadline5-dev libssl-dev libdb-dev
wget http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz
tar -xzf Python-2.7.6.tgz
cd Python-2.7.3
./configure
make
make install
cd ..
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.6 20
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 10
sudo update-alternatives --set python /usr/bin/python2.6
wget http://peak.telecommunity.com/dist/ez_setup.py
python2.7 ez_setup.py
easy_install-2.7 virtualenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment