Created
January 20, 2012 04:59
-
-
Save wbond/1645353 to your computer and use it in GitHub Desktop.
Compile _ssl.so
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
# Fedora | |
yum install make automake gcc gcc-c++ openssl-devel | |
# Ubuntu | |
apt-get install build-essential libssl-dev | |
# Both | |
curl -sS http://www.python.org/ftp/python/2.6.6/Python-2.6.6.tar.bz2 > Python-2.6.6.tar.bz2 | |
tar xvfj Python-2.6.6.tar.bz2 | |
cd Python-2.6.6 | |
./configure --enable-unicode=ucs4 && make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment