'installing python with pip window
Used the standard python installation file (3.9.12) for windows. The installation file have a built in option for pip installation:
The resulting python is without pip. Then I try to install pip directly by using "get-pip.py" file. This action resulted in:
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 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/pip/ 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/pip/ 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/pip/ ERROR: Operation cancelled by user
What can I do?
Solution 1:[1]
You either could try pip3
or python -m pip
or python3 -m pip
you may check the installed python version. is it 3.9.12 or something else, and if it's not .12, you should set the new path to the Python with this steps
Solution 2:[2]
Usually when I get any errors like these I will uninstall the whole Python and reinstall with all features allowed/ticked in the checkbox and it starts to work.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | ariamadeus |
Solution 2 | TheTechRobo Stands for Ukraine |