共计 169 个字符,预计需要花费 1 分钟才能阅读完成。
报错如下
ImportError: pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (openssl)
解决方法
pip3 uninstall pycurl
export PYCURL_SSL_LIBRARY=nss
pip3 install pycurl
正文完
共计 169 个字符,预计需要花费 1 分钟才能阅读完成。
报错如下
ImportError: pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (openssl)
解决方法
pip3 uninstall pycurl
export PYCURL_SSL_LIBRARY=nss
pip3 install pycurl