Mozirra
Mozirra

Reputation: 31

ImportError on importing pycurl

I'm getting a traceback whenever trying to import pycurl, any help on solving the issue would be greatly appreciated.

Version of Python is 2.7

>>> import pycurl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: /usr/local/lib/libcurl.so.4: symbol SSLv2_client_method, version     OPENSSL_1.0.0 not defined in file libssl.so.1.0.0 with link time reference

Upvotes: 3

Views: 2187

Answers (1)

user2285323
user2285323

Reputation: 178

On debian for me helped this:

apt-get install -y libssl-dev

Upvotes: 2

Related Questions