how to check if django is installed in windows cmd code example
Example 1: check if django is installed
#Make sure you are in your applications venv
i.e (source "application"_env/bin/activate)
# Then run the below command
python -m django --version
Example 2: how to check if django is installed( in python shell)
import django
django.VERSION