You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed the guide in Readme file to try and fix the SSL issue. It didn't work. What worked is the following...
Run in pyhton: print(ssl.get_default_verify_paths().openssl_cafile)
It will show you the directory where you should have your root certs for python. In my case that directory didn't exist. I created it. Copied isrg-root-x1-cross-signed.pem file into that directory and renamed it to "cert.pem". Works like a charm now. If you already have "cert.pem" - then you would need to use openssl to merge isrg-root-x1 with your existing certs.
The text was updated successfully, but these errors were encountered:
I followed the guide in Readme file to try and fix the SSL issue. It didn't work. What worked is the following...
Run in pyhton:
print(ssl.get_default_verify_paths().openssl_cafile)
It will show you the directory where you should have your root certs for python. In my case that directory didn't exist. I created it. Copied isrg-root-x1-cross-signed.pem file into that directory and renamed it to "cert.pem". Works like a charm now. If you already have "cert.pem" - then you would need to use openssl to merge isrg-root-x1 with your existing certs.
The text was updated successfully, but these errors were encountered: