Ho installato con successo Python 3.4 e Python 3.6 sulla mia macchina locale, ma non sono in grado di installare pacchetti con pip3
.
Quando eseguo pip3 install <package>
, ottengo il seguente errore relativo a 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>
Come posso riparare la mia installazione di Python3.x in modo da poter installare i pacchetti con pip install <package>
?
pip3 install --upgrade pip
vedere se ricevi lo stesso messaggio o meno.
sudo apt-get install python3-pip
??