# Sprawdzanie zainstalowanej wersji Django

DevFeed: [Sprawdzanie zainstalowanej wersji Django](<https://devfeed.tech/articles/sprawdzanie-zainstalowanej-wersji-django-27580.md>)

Original publisher: [Read original article](<https://gagor.pro/2013/09/sprawdzanie-zainstalowanej-wersji-django/>)

Author: Tom

Published: 2013-09-16T00:00:00Z

Content type: tutorial

Language: pl

Sources: [Tomasz Gągor](<https://devfeed.tech/sources/tomasz-gagor.md>)

Topics: [Django](<https://devfeed.tech/topics/django.md>), [Python](<https://devfeed.tech/topics/python.md>), [import](<https://devfeed.tech/topics/import.md>)

Tags: [django](<https://devfeed.tech/tags/django.md>), [import](<https://devfeed.tech/tags/import.md>), [python](<https://devfeed.tech/tags/python.md>)

## AI overview

A one-line Python command displays the installed Django version by reading django.VERSION and joining its components.

## Source excerpt

Ten one liner załatwia sprawę: python -c 'import django; print ".".join([str(s) for s in django.VERSION]);'