Replies: 1 comment
-
Seems netskope issue |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
1. What I was doing
Tried to import fetch_california_housing
from sklearn.datasets import fetch_california_housing
housing = fetch_california_housing()
housing;
2. Issue
It returned 'SSLCertVerificationError'
URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate in certificate chain (_ssl.c:1007)>
3. Troubleshoot
3.1. Ran the below command in bash, but still no luck
conda config --set ssl_verify false
3.2. Checked Keychain Access, Root CA certs are installed such as
DigiCert Global Root
Apple Root CA
3.3. Tried to reinstall by running brew install ca-certificates, but it says already up-to-date
Warning: ca-certificates 2025-02-25 is already installed and up-to-date.
Can anyone shed a light for me?
Beta Was this translation helpful? Give feedback.
All reactions