Install NPM (you likely already have it)

sudo apt-get install nodejs npm

Install Django

pip install django

Start the app

django-admin startproject project

Run the app

cd project
python manage.py runserver

Init Git

git init