Dlaczego Python nie może znaleźć współużytkowanych obiektów znajdujących się w katalogach w sys.path?

Próbuję zaimportować pycurl:

$ python -c "import pycurl"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: libcurl.so.4: cannot open shared object file: No such file or directory

Teraz libcurl.so.4 znajduje się w / usr / local / lib. Jak widać, jest to sys.path:

$ python -c "import sys; print sys.path"
['', '/usr/local/lib/python2.5/site-packages/setuptools-0.6c9-py2.5.egg', 
'/usr/local/lib/python25.zip', '/usr/local/lib/python2.5', 
'/usr/local/lib/python2.5/plat-linux2', '/usr/local/lib/python2.5/lib-tk', 
'/usr/local/lib/python2.5/lib-dynload', 
'/usr/local/lib/python2.5/sitepackages', '/usr/local/lib', 
'/usr/local/lib/python2.5/site-packages']

Każda pomoc zostanie bardzo doceniona.

questionAnswers(6)

yourAnswerToTheQuestion