Symbol not found: _curl_easy_cleanup
Posted
by Bharadwaj
on Stack Overflow
See other posts from Stack Overflow
or by Bharadwaj
Published on 2010-05-06T09:09:50Z
Indexed on
2010/05/11
21:54 UTC
Read the original article
Hit count: 266
I am working on porting a python application to Mac OS X. The application makes use of pycurl and PyCDF.
When I run my code, I get this error :
> File
> "/Library/Python/2.5/site-packages/pycdf/pycdfext.py",
> line 5, in <module>
> import _pycdfext ImportError: dlopen(/Library/Python/2.5/site-packages/pycdf/_pycdfext.so,
> 2): Symbol not found:
> _curl_easy_cleanup Referenced from: /Library/Python/2.5/site-packages/pycdf/_pycdfext.so
> Expected in: dynamic lookup
I tried installing different versions of curl, pycurl with different configs of libcurl. Still stuck Platform : 10.5.8 Curl : 7.19.4 [also tried 7.20.1] Pycurl : 7.19.0
How do I fix this error?
© Stack Overflow or respective owner