I'm working on a remote Linux system without root permission. I want to install python and pip locally. I have managed to install python, but failed on pip. The command I use is as follows:
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py --user
The downloading succeeded, but when running the second command, I received the error message:
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting pip
Could not fetch URL https://pypi.python.org/simple/pip/:
There was a problem confirming the ssl certificate: Can't connect to HTTPS URL because the SSL module is not available. - skipping
Could not find a version that satisfies the requirement pip (from versions: )
No matching distribution found for pip
I also tried
python get-pip.py
But the error is the same. What's wrong with my commands? Thank you all for helping me!!!