mac OS Catalina python 3.6.5
J'ai quitté python pendant un moment (environ un an), mais quand j'ai essayé d'installer un nouveau package pip install <nom du package>
, j'ai eu cette erreur ...
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting numpy-stl (nom du package que vous avez essayé d'installer cette fois)
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/numpy-stl/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/numpy-stl/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/numpy-stl/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/numpy-stl/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)': /simple/numpy-stl/
Could not fetch URL https://pypi.org/simple/numpy-stl/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/numpy-stl/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)) - skipping
ERROR: Could not find a version that satisfies the requirement numpy-stl (from versions: none)
ERROR: No matching distribution found for numpy-stl
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)) - skipping
Après avoir étudié diverses choses, comme solution
--pip mise à jour
--Ajoutez une option pour faire confiance à l'hôte lorsque pip install
Après tout, je l'ai résolu en élevant la version de python et en changeant d'avis avec pip. (Vous devrez peut-être mettre à jour l'outil de ligne de commande de Xcode en cours de route.)
J'utilisais pyenv
, donc
pyenv install 3.8.1
pyenv global 3.8.1
pip install (Package que vous souhaitez installer)
L'installation s'est terminée avec succès! !! !!
Si vous êtes désespéré pour le même problème, je serais heureux si cela pouvait le résoudre. J'espère que tu aimes! !! S'il vous plaît!
Recommended Posts