I have got a problem with install python on my OVH vps server kubuntu 14.04 desktop. What i need to do ?
:~/Desktop# python get-pip.py
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
You should trying installing form your packages repos
Calling more attention to @Arduino_Sentinel 's comment
On a fresh debian installation, I had installed Python 3.6 via
creating a virtualenv with
virtualenv -p python3.6 env
and subsequently trying to install anything withenv/bin/pip
would produce the errors from the question.The comment quoted above solved the issue on my server.