how to check if django is installed( in python shell) code example
Example 1: how to check if django is installed in ubuntu
$ django-admin.py version
Example 2: how to check if django is installed( in python shell)
import django
django.VERSION
Example 3: check django version windows
>>> import django
>>> django.VERSION
(2, 0, 0, 'final', 0)