Django Installation - Step 1

Installing Python - Django is written in 100% pure Python code, so you'll need to install Python on your system before intalling Django. Latest Django version requires Python 2.6.5 or higher

Refer Python installation

Type 'python' in command prompt, if you have already installed, it provide you the version of python you installed.

Type 'pip freeze' to check installed external packages.

Django Installation - Step 2

To check you have Django install or not: open command prompt: open directory C:\Users\Username\AppData\Local\Programs\Python\Python37-32\Scripts - and type: django-admin --version

Installing Django: open command prompt, open directory C:\Users\Username\AppData\Local\Programs\Python\Python37-32\Scripts - where your pip.exe exists, and type the following command to install django.

pip install django

pip-admin --version

django-admin : show list of available django commands.