Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"sudo pip install Django" => sudo: pip: command not found

This what my terminal is saying when trying to install Django.

MacBook-XXXX:~ Stephane$ sudo pip install Django
sudo: pip: command not found

I have tested in idle shell if pip is installed:

>>> import easy_install
>>> import pip
>>>

What am I doing wrong?

like image 660
Sulot Avatar asked Dec 05 '22 03:12

Sulot


1 Answers

you need to install pip

sudo easy_install pip
like image 119
ThomasHoffLTD Avatar answered Dec 08 '22 06:12

ThomasHoffLTD