Last active
August 29, 2015 14:05
-
-
Save cpcloud/558e2cea1ca7ea4e1058 to your computer and use it in GitHub Desktop.
Build Python 2.7.8 from source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://www.python.org/ftp/python/2.7.8/Python-2.7.8.tar.xz | |
tar xvf Python-2.7.8.tar.xz | |
cd Python-2.7.8 | |
./configure --enable-shared --enable-ipv6 --enable-unicode=ucs4 --prefix=/usr | |
make -j `nproc` | |
find -name 'readline.so' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment