mac下使用import pycurl,出现: ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other)
使用下面方式解决:
pip uninstall pycurl
pip install --compile --install-option="--with-openssl" pycurl
mac下使用import pycurl,出现: ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other)
使用下面方式解决:
pip uninstall pycurl
pip install --compile --install-option="--with-openssl" pycurl