"sudo pip install Django" => sudo: pip: command not found
2 answers
pipis a package management system used to install packages written in python. Therefore, first install pip, and then Django.
sudo apt-get install python-pip.
And to install, Djangofollow the
steps to install django.
+2