首页 > Web开发 > 详细

SSL backend error when using OpenSSL pycurl install error

时间:2019-02-15 13:54:30      阅读:180      评论:0      收藏:0      [点我收藏+]

centos7

pip install pycurl 错误

pip uninstall pycurl
export PYCURL_SSL_LIBRARY=nss
pip install pycurl




helloworld2013‘s answer is correct, but the key is matching the SSL library that pycurl is expecting. The error will be something like:

pycurl: libcurl link-time ssl backend (<library>) is different from compile-time ssl backend (<library> or "none/other")

To fix it, you have to use the library pycurl is expecting. In my case, my error was "pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (openssl)", so my fix was:

SSL backend error when using OpenSSL pycurl install error

原文:https://www.cnblogs.com/S-volcano/p/10383140.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!