How To Check Django Version - Python

Опубликовано: 24 Июль 2026
на канале: Learn Python
498
7

Django is one of the most popular frameworks for creating web applications. Its initial release was back in 2005, and since then, more than 20 stable versions have been released. Having that many versions available to choose from, we often require methods to check our version in Django, either for deployment or dependency compatibility purposes. So how to check the Django version?

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

import django
print(django.get_version())


#CheckDjangoVersion