-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Solved] Import from first hard coded URL fails with "[SSL: CERTIFICATE_VERIFY_FAILED" #54
Comments
Update: This seems to be a general Windows Python problem and it's fixable by manually installing the "ISRG Root X1" (https://letsencrypt.org/docs/certificate-compatibility/) - http://woshub.com/updating-trusted-root-certificates-in-windows-10/ Still it would be nice if an SSL error with the first URL would not stop the second one from working. |
Hi, Do you have any ideas how to fix this issue? Thanks, Paul |
You can add |
Is there another way to solve this issue? adding ssl._create_default is apparently called having this same issue here. |
Has there been any fix for this issue? I'm running into the same problem. The Thanks! |
I was still unable to get letsencrypt certificates validated even when ensuring "ISRG Root X1" and "ISRG Root X2" were installed. The simplest solution was to go into |
Wow, that worked! I can't believe it. Thank you! |
you can also define the DOWNLOAD_URL var while running pgeocode and remove the s of https url : |
On windows 10 using Python 3.9.7 the quickstart example crashes at
with the error
This is probably caused by the Let's Encrypt certificate.
You can do a quick fix by either removing the first URL in line 25 in pgeocode.py or by turning off ssl verification in line 141
The text was updated successfully, but these errors were encountered: