报错信息:ImportError: pycurl: libcurl link-timessl backend (openssl) is different from compile-timessl backend (none/other)
解决方法:pip3 install pycurl==7.43.0.1 --global-option=build_ext --global-option="-L/usr/local/opt/openssl/lib" --global-option="-I/usr/local/opt/openssl/include"
参考:https://segmentfault.com/q/1010000012674778
网友评论