Ubuntu Maverick w/Python 2.7:

I can't figure out what to do to resolve the following import error:

>>> import ssl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/ssl.py", line 60, in <module>
   import _ssl             # if we can't import it, let the error propagate
ImportError: No module named _ssl

UPDATE: I recompiled the source. I was unable to figure out how to add the --with-ssl option the answers below mention, instead I got this to work by editing the lines regarding SSL in /Modules/Setup.dist.

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Did you build the Python from source? If so, you need the --with-ssl option while building.

link|improve this answer
1  
I can't remember if I built from source or not. when do I add the --with-ssl? the ./configure, make, or make install step. when I added this to ./configure it said --with-ssl option was not recognized – J Cooper Feb 26 '11 at 18:43
It's an option to configure. In general, configuration options, compile-time-switches, and the like, are options to configure -- what it actually does is run over many of the source files, making text substitutions (and often creating new header files), before build time. – jelford Jan 7 at 9:20
feedback

The underscore usually means a C module (i.e. DLL), and Python can't find it. Did you build python yourself? If so, you need to include SSL support.

link|improve this answer
feedback

Either install the supplementary packages for python-ssl using your package manager or recompile Python using -with-ssl (requires OpenSSL headers/libs installed).

link|improve this answer
feedback

Here are step by step instructions how to add ssl to Python http://evilthots.wordpress.com/2010/08/04/installing-ssl-on-centos/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.