安装Openssl源码包
#wget https://www.openssl.org/source/openssl-1.0.2g.tar.gz | tar xz && cd openssl-1.0.2g && ./config shared --prefix=/usr/local/python2.7 && make && make install
安装python2.7.13源码包
#export LDFLAGS="-L/usr/local/python2.7/lib/"
#export LD_LIBRARY_PATH="/usr/local/python2.7/lib/"
#export CPPFLAGS="-I/usr/local/python2.7/include -I/usr/local/python2.7/include/openssl"
#wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz| tar -xzf Python-