Django install steps. Pip install curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py Virtualenv install pip install virtualenv Django install pip install Django Create a Django project django-admin startproject mysite(project's name, changeble) Server run python manage.py runserver Add app python manage.py startapp polls Creating new migrations based on the changes you have made to your models python manage.py makemigration Applying and unapplying migrations python manage.py migrate Create a user for Admin python manage.py createsuperuser