how to check if django installed code example
Example 1: command to check what version of django is installed
python3 -m django --version // mac
py -m django --version // windows
Example 2: 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