这个消息失败了:Curl is configured to use SSL, but we have not been able to determine which SSL backend it isPlease see PycURL documentation for how to specify the SSL backend manually.最受欢迎的是这个:export PYCURL_SSL_LIBRARY=openssl
pip install p
当试图将pycurl导入python脚本时,我遇到了链接时和编译时ssl后端错误的问题。这个脚本在OSX上运行得很好,但是在我当前的设置上却不是这样。我收到的错误是ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl在重新安装之前,我尝试过卸载,然后执行expor
我已经进行了清理,通过brew安装了openssl,告诉pip链接到该openssl安装,并尝试加载模块。它抱怨“无/其他”不同于"openssl“。ImportError: pycurl: libcurl link-time ssl backend (none/other) is different from compile-time ssl backend(openssl</
我在AWS中有一个运行Python3.6 (Amazon /2.8.3)的ec2实例,其中需要安装带有NSS后端的pycurl。link-time ssl backend (openssl) is different from compile-time ssl backend (nss)
所以我猜我的问题是我以前用openSSL而不是NSS安装了libcurl,从而导致libcurl和pycurl之间的不匹配。根据另一个堆栈溢出问题,如果要用NSS后端
我在Ubuntu 14.10上编译openssl 1.0.1l时,使用了以下说明来构建该库。make -j4libssl.a(ssl_algs.o): In function `SSL_library_init':
ssl_algs.c:(.text+0x1f): undefined reference to `EVP_idea_cbc