Reputation: 727
I'm having a problem with python package requests-html
. When the package is trying to download chromium, I'm getting an error:
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)
It's the same problem as here and it has been resolved for Mac. Any idea how can I fix this on Windows? In case it matters, installing packages with PIP works fine. Windows 8, Python 3.7.
Upvotes: 1
Views: 775
Reputation: 91
Have you tried using verify=False
in your request args?
This should make the request ignore SSL Cerificate requirements.
Upvotes: 1