错误输出
pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend
解决方式
export PYCURL_SSL_LIBRARY=nss
pip install --compile --install-option="--with-nss" --no-cache-dir pycurl
pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend
export PYCURL_SSL_LIBRARY=nss
pip install --compile --install-option="--with-nss" --no-cache-dir pycurl
评论区