Monday 29 April 2019

How to install django on Windows?

1. Download get-pip.py from pip official download site
    https://bootstrap.pypa.io/get-pip.py

2. Run pip installation using command "python get-pip.py"


3. 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