pip install
Lorsque j'essaye, j'obtiens l'erreur suivante.
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
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/pip/
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/pip/
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/pip/
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/pip/
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/pip/
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
Requirement already up-to-date: pip in ./.anyenv/envs/pyenv/versions/3.7.3/lib/python3.7/site-packages (19.0.3)
Cela ressemble à une erreur liée à SSL, je vais donc essayer de réinstaller OpenSSL pour le moment.
brew install openssl
Mais non. Vous ne pouvez pas ajouter le paramètre de confiance à ~ / .pip / conf.pip.
La réinstallation de Python et de pip a résolu le problème. J'utilisais pyenv, donc
pyenv install 3.8.0
pyenv global 3.8.0
curl -kL https://bootstrap.pypa.io/get-pip.py | python
Après l'exécution, j'ai exécuté à nouveau `` pip install '' et cela a bien fonctionné.
C'est du moyamoya, mais cela a fonctionné, alors laissons les choses telles quelles. .. ..
Recommended Posts