I've got two installations of curl: one is in /usr/bin - should be the system one, another is in /usr/local/bin - I installed it from source. These two installations have different versions.
Pycurl is using the one from /usr/bin, whereas curl command now points to the one in /usr/local/bin - I've changed the $PATH var in my .bash_profile accordingly.
I didn't try to re-install pycurl.
Is there a way to tell pycurl to use the different libcurl installation, the one which comes along with /usr/local/bin/curl? If pycurl re-installing is required, are there any additional flags needed to point pycurl to the needed libcurl version?
Thank you.