"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
Solution 1:
you need to install pip
sudo easy_install pip
Solution 2:
pip
is a package management system used for installing packages written in python. So first install pip
and then Django
.
sudo apt-get install python-pip.
And for installing django
, follow
django installation steps.
Post a Comment for ""sudo Pip Install Django" => Sudo: Pip: Command Not Found"