The following error occurred in pycurl under Centos

pycurl: libcurl link-time version (7.29.0) is older than compile-time version (7.36.0)

the following solutions have been tried online and do not work.
pip3 uninstall pycurl
export PYCURL_SSL_LIBRARY=nss
pip3 install pycurl
still continues to report errors.

Mar.31,2021

then try
pip3 uninstall pycurl
export PYCURL_SSL_LIBRARY=openssl
pip3 install pycurl


it seems that you can only recompile the libcurl library, because the libcurl version that pycurl depends on is too low, otherwise you can install an earlier version of pycurl.

Menu