sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python-pip
how to install python-pip in ubuntu:14.04?
sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python-pip
how to install python-pip in ubuntu:14.04?
python-pip
is in the universe repositories, therefore use the steps below:
sudo apt-get install software-properties-common
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install python-pip
apt-add-repository
. Install with sudo apt-get install software-properties-common
as described now in my answer. Start again with the first command.
– A.B.
Sep 11 '15 at 09:25
sudo apt-get clean
, now install python again and test it sudo apt-get install --reinstall python
– A.B.
Sep 11 '15 at 13:02
apt-get update -y
, and in the next line apt-get install -y python-pip python-dev build-essential
. I'm seeing the error "E: Unable to locate package python-pip" and I don't know why. Does anybody here know why?
– Ethan Davis
Apr 25 '20 at 23:29
sudo apt-get install python-pip
with sudo apt-get install python3-pip
it works properly
– Saddam Meshaal
May 14 '20 at 21:02
I ran into this problem trying to install pip for python2; e.i. I wanted pip2. What worked for me was this:
sudo apt-get update && sudo apt-get install python-pip
Hope this helps someone.
sudo apt-get update
first – Kamaradski Nov 20 '20 at 12:39