Skip to content

Instantly share code, notes, and snippets.

@oeeckhoutte
Created April 11, 2013 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oeeckhoutte/5363363 to your computer and use it in GitHub Desktop.
Save oeeckhoutte/5363363 to your computer and use it in GitHub Desktop.
[Bash][Debian] Install Python 2.7
sudo 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.3/Python-2.7.3.tgz
tar -xzf Python-2.7.3.tgz
cd Python-2.7.3
./configure --prefix=/usr --enable-shared
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment