vote up 0 vote down star

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?

flag

3 Answers

vote up 1 vote down check

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|flag
vote up 0 vote down

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|flag
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 at 8:33
vote up -3 vote down

Use pexpect with the openssl binary.

link|flag
Silly downvoters, this answer is fabulous. – BipedalShark Nov 29 at 5:43

Your Answer

Get an OpenID
or

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