If you are accessing a site with a certificated issued by Let's Encrypt, you will have trouble with RasterIO due to the certifi package. See the following certifi's issues: 162, 163, 164 and 165.
There are two possible workarounds:
Set an environment variable in your Linux system pointing to the CA Bundle before launching the Python interpreter:
export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
Or, use certifi-system-store to replace certifi's certificates by the system trust store:
If you are accessing a site with a certificated issued by Let's Encrypt, you will have trouble with RasterIO due to the certifi package. See the following
certifi's
issues: 162, 163, 164 and 165.There are two possible workarounds:
Set an environment variable in your Linux system pointing to the CA Bundle before launching the Python interpreter:
export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
Or, use certifi-system-store to replace
certifi's
certificates by the system trust store: