ImportError: pycurl: libcurl link-time ssl backend (nss)故障解决
执行程序报错:ImportError: pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (none/other)解决流程
pip uninstall pycurl 卸载掉之前安装的;
执行
export PYCURL_SSL_LIBRARY=nss
安装pip install pycurl 或者pip install pycurl==7.43.0.1 再次安装
PS:也可能不是出现nss,而是openssl换成执行
export PYCURL_SSL_LIBRARY=openssl
就可以了
页:
[1]