Instalé Python 3.4 y Python 3.6 en mi máquina local con éxito, pero no puedo instalar paquetes con pip3
.
Cuando ejecuto pip3 install <package>
, obtengo el siguiente error relacionado con SSL :
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting <package>
Could not fetch URL https://pypi.python.org/simple/<package>/: 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 <package> (from versions: )
No matching distribution found for <package>
¿Cómo puedo arreglar mi instalación de Python3.x para poder instalar paquetes con pip install <package>
?
pip3 install --upgrade pip
ver si recibe el mismo mensaje o no.
sudo apt-get install python3-pip
?