how to check django version using cmd 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: check django version windows
>>> import django
>>> django.VERSION
(2, 0, 0, 'final', 0)