I tried using the ssl module in Python 2.6 but I was told that it wasn't available. After installing OpenSSL, I recompiled 2.6 but the problem persists.

Any suggestions?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Did you install the OpenSSL development libraries? I had to install openssl-devel on CentOS, for example. On Ubuntu, sudo apt-get build-dep python2.5 did the trick (even for Python 2.6).

link|improve this answer
sudo apt-get build-dep python2.6 now works on Ubuntu 10.04 – ftravers May 3 '11 at 8:54
feedback

Use the binaries provided by python.org or by your OS distributor. It's a lot easier than building it yourself, and all the features are usually compiled in.

If you really need to build it yourself, you'll need to provide more information here about what build options you provided, what your environment is like, and perhaps provide some logs.

link|improve this answer
I installed it via a tar file under Ubuntu Linux 8.10. Just decompressed it, ran ./configure;make;sudo make install and was done. Its just that I can't get ssl to import. – Evan Fosmark Jun 16 '09 at 8:33
feedback

Use pexpect with the openssl binary.

link|improve this answer
Silly downvoters, this answer is fabulous. – Richard Simões Nov 29 '09 at 5:43
except that subprocess is fine and part of the std library (note: i didn't downvote you) – Matt Joiner Jun 29 '10 at 10:54
pexpect has the added benefit of allowing one to wait for certain actions by openssl to finish before sending more data to STDOUT. This nicety would have to be coded manually otherwise. – Richard Simões Jun 29 '10 at 14:45
But it doesn't answer the question. If you have software that looks for ssl or _ssl, installing pexpect doesn't help you. – Lennart Regebro Nov 29 '11 at 14:17
feedback

Your Answer

 
or
required, but never shown

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