1. Download get-pip.py from pip official download site
https://bootstrap.pypa.io/get-pip.py3. Install django by running below command "pip install django"
4. installation is successful, check django version to confirm installation using below command.
python -m django --version
5. Create your first project using below command. It will create project folder with name "mysite" under given location.
django-admin startproject mysite