I'm having some problems with the libcurl library. I have a tool that I'm trying to install that required pycurl. I compiled it and then went to run my tool. I got this error:
Looking through the code, I saw this:Code:Fatal Python error: pycurl: libcurl link-time version is older than compile-time version Aborted
I figured I'd update my libcurl. This had no effect. I seached on google and found a post in polish, that best translated, told me to uninstall libcurl completely, then install the new version to remove the error:Code:if (vi->version_num < LIBCURL_VERSION_NUM) { Py_FatalError("pycurl: FATAL: libcurl link-time version is older than compile-time version");
However, backtrack doesnt deal in RPM packages, and I don't know any other method to remove libcurl and update. Any ideas?Code:rpm -qa |grep libcurl* rpm -e --nodeps libcurl-7.16.4-16
William


