Could not fetch URL https://pypi.org/simple/certifi/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/certifi/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.",)) - skipping
Apparently the cause is SSLError.
As a result of google, the following two came out.
Read this if you get SSL related errors with pip install! !! !! Resolve error that pip does not work
I referred to these, but it didn't work ...
After that, when I remade venv, it went smoothly.
Rethinking why this happened, the venv I made just before this
$virtualenv name
I made it with. Why do you do this ...
The result of re-googled
$ python3 -m venv name
I remade it with and it worked.
If you are addicted to it, I recommend you to try it again.
Recommended Posts