I am trying to install pip over python3.5 and my Ubuntu 16.04 does not want to perform it. I am executing the command sudo apt-get install python3.5-pip and then I get result like:
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' 1 1 Answer
According to the answer in the thread below, pip should be already installed as you are using Python 3.4+
In case you don't have it installed, try running the command below
sudo apt-get install python3-pip 1