Skip to content

Instantly share code, notes, and snippets.

@uschen
Created November 18, 2013 03:24
Show Gist options
  • Save uschen/7521967 to your computer and use it in GitHub Desktop.
Save uschen/7521967 to your computer and use it in GitHub Desktop.
compile python 3.3 on debian
apt-get build-dep python3.2
apt-get install libreadline-dev libncurses5-dev libssl1.0.0 tk8.5-dev zlib1g-dev liblzma-dev
wget http://python.org/ftp/python/3.3.2/Python-3.3.2.tar.bz2
tar jxf ./Python-3.3.2.tar.bz2
cd ./Python-3.3.2
./configure
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment