DEV Community

Discussion on: Django: What version do I have?

Collapse
 
biplov profile image
Biplov

You can also use the following terminal commands to check Django version:

$ django-admin --version 

or

$ django-admin.py version
Collapse
 
adamlombard profile image
Adam Lombard • Edited

Much easier! Thanks for the tip!