Skip to content Skip to sidebar Skip to footer

Installing Pip On Ubuntu 16.04

I was installing pip for python3. I used the following command for that: sudo apt-get install python3-pip But after installation it still says pip is not installed. I have pytho

Solution 1:

The python3-pip package installs pip for Python 3, which is named pip3. Plain pip is pip for Python 2, which is installed by the python-pip package.

Solution 2:

The best way to install it, is by :

wget https://bootstrap.pypa.io/get-pip.py

cd ~/Downloads/ (if your version is english, in french you find it Téléchargements)

Then once you downloaded it, try :

sudo python3 get-pip.py

Solution 3:

easy_install -U pip : this solved my problem on ubuntu 16.04

Post a Comment for "Installing Pip On Ubuntu 16.04"