Is it possible to install the SSL module for python on a linux box that already has OpenSSL installed without recompiling python? I was hoping it would be as simple as copying
NOTE: Python >= 2.6 already has SSL support built-in, there's no need to install ssl package.
ssl
Install package from pypi:
pip install ssl
If you're missing pip command, install it for your distribution:
pip
RedHat/Centos:
yum install python-pip
Debian/Ubuntu
apt-get install python-pip