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
Asked
Active
Viewed 335 times
0
-
Please check if you have openssl installed on your Pi. Try sudo apt-get install openssl. Also, please use pip3 to install modules for python 3.7. – CodeTalker Mar 31 '20 at 20:24
-
so yeah I do have ssl installed but its 1.0.1 which is outdated I guess? but how would I go about updating it? – ahhh Mar 31 '20 at 20:27
-
Try running sudo apt-get update; sudo apt-get upgrade – CodeTalker Mar 31 '20 at 20:28
-
Does this answer your question? [Requests (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.") Error in PyCharm requesting website](https://stackoverflow.com/questions/54135206/requests-caused-by-sslerrorcant-connect-to-https-url-because-the-ssl-module) – AMC Mar 31 '20 at 20:31
-
still gives the same SSL error after I do that, Yeah I ran what you said and it still didn't update the version its still on 1.0.1 – ahhh Mar 31 '20 at 20:50
-
also the fix you sent seems to be for windows 10 while this would be on a Linux OS – ahhh Mar 31 '20 at 21:15
-
also just installed 3.8 same problem – ahhh Mar 31 '20 at 23:53