DigitalGlobe / gbdxtools

(Deprecated) Python SDK for using GBDX
MIT License
74 stars 57 forks source link

CentOS SSL Pycurl error #785

Closed drwelby closed 4 years ago

drwelby commented 4 years ago

Importing GBDXtools on CentOS results in:

ImportError: pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (openssl)

drwelby commented 4 years ago

Solution:

pip uninstall pycurl
export PYCURL_SSL_LIBRARY=nss
pip install pycurl
drwelby commented 4 years ago

Conda users should try this instead of the pip install pycurl above:

conda install -c conda-forge pycurl