how to check and see if you have django installed code example
Example 1: how to check if django is installed in ubuntu
$ django-admin.py version
Example 2: command to check what version of django is installed
python3 -m django --version // mac
py -m django --version // windows
Example 3: how to check if django is installed( in python shell)
import django
django.VERSION