how do i know the version of 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: how to check django version
>>> import django
>>> django.VERSION
(2, 0, 0, 'final', 0)