Curl is configured to use SSL, but we have not been able to determine which SSL backend it is using. Please see PycURL documentation for how to specify the SSL backend manually.
也有人作出解答点击跳转
我是从官方文档中找到答案的:官方文档地址
specify the SSL backend manually
# 安装方式easy_install / pip都可以
export PYCURL_SSL_LIBRARY=[openssl|gnutls|nss]
easy_install pycurl
完整的命令如下:
# upgrade pip if necessary
pip install --upgrade pip
# remove current pycurl
pip uninstall pycurl
# set PYCURL_SSL_LIBRARY
export PYCURL_SSL_LIBRARY=nss
# recompile and install pycurl
pip install --compile pycurl

本文介绍了解决PycURL无法自动确定所使用的SSL后端的问题。通过设置环境变量`PYCURL_SSL_LIBRARY`为特定的SSL库(如nss),可以手动指定SSL后端。文章还提供了详细的步骤来卸载并重新安装PycURL。
555

被折叠的 条评论
为什么被折叠?



