Python3.5-pip konnte nicht installiert werden

Python3.5-pip konnte nicht installiert werden

Ich versuche, Pip über Python 3.5 zu installieren, aber mein Ubuntu 16.04 will es nicht ausführen. Ich führe den Befehl aus sudo apt-get install python3.5-pipund erhalte dann ein Ergebnis wie:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package python3.5-pip
E: Couldn't find any package by glob 'python3.5-pip'
E: Couldn't find any package by regex 'python3.5-pip'

Antwort1

Laut der Antwort im Thread unten pipsollte es bereits installiert sein, da Sie Python 3.4+ verwenden

https://stackoverflow.com/questions/6587507/wie-installiere-pip-mit-python-3

Falls Sie es nicht installiert haben, versuchen Sie, den folgenden Befehl auszuführen

sudo apt-get install python3-pip

verwandte Informationen