I am starting a new (actually very old) project which I know is in Django. I am getting lost knowing the exact version of Django it has been build upon. Is there a way I can kno
I see the answer accepted above and I think it's much easier. Maybe I'm missing something, but this is what I would do.
Open a python terminal that has the Django project on its path.
$ python
>>> import django
>>> print django.get_version()
0.97-pre-SVN-7668
That version number is strictly for illustration. Yours may differ, I hope.