Voici un aperçu de l'environnement à l'origine de l'erreur. --macbookAir (Il est important d'être mac pour le moment) --Je mets python3.7 dans Homebrew (c'est le plus important)
Dans mon cas, je suis resté bloqué lors de l'importation d'un ensemble de données avec sklearn. Avec la solution qui se présente lorsque je la recherche sur le net.
code exécutable python3
>>>import certifi
>>>certifi.where()
'/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/certifi/cacert.pem'
Et sortez. Vous pouvez l'utiliser comme clé (?) Pour l'authentification SSL.
Code d'exécution sur le terminal
$ touch /Library/Frameworks/Python.framework/Versions/3.7/etc/openssl/cert.pem #S'il n'y a pas de fichier
$ ln -s /Library/Frameworks/Python.framework/Versions/3.7/etc/openssl/cert.pem /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/certifi/cacert.pem
$ ls -l /Library/Frameworks/Python.framework/Versions/3.7/etc/openssl
lrwxr-xr-x 1 nom d'utilisateur admin 96 11 22 10:04 cert.pem -> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/certifi/cacert.pem
Et. Cela devrait probablement le résoudre.
[youtube-dl] Erreur SSL python3 (CERTIFICATE_VERIFY_FAILED) Problème avec CERTIFICATE_VERIFY_FAILED dans Python 3.6 du programme d'installation officiel pour macOS
Recommended Posts