Ich habe Python 3.4 und Python 3.6 erfolgreich auf meinem lokalen Computer installiert, kann jedoch keine Pakete mit installieren pip3
.
Bei der Ausführung pip3 install <package>
wird der folgende SSL- Fehler angezeigt:
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>
Wie kann ich meine Python3.x-Installation reparieren, damit ich Pakete mit installieren kann pip install <package>
?
pip3 install --upgrade pip
sehen, ob Sie dieselbe Nachricht erhalten oder nicht.
sudo apt-get install python3-pip
?