How to check Django version How to check Django version python python

How to check Django version


Django 1.5 supports Python 2.6.5 and later.

If you're under Linux and want to check the Python version you're using, run python -V from the command line.

If you want to check the Django version, open a Python console and type

>>> import django>>> django.VERSION(2, 0, 0, 'final', 0)


Basically the same as bcoughlan's answer, but here it is as an executable command:

$ python -c "import django; print(django.get_version())"2.0


If you have installed the application:

$ django-admin --version3.2.6