3 responses to “How to find Django version”

  1. Arthur Koziel

    You could also use the get_version() method to get a formatted string of the VERSION variable.

    >>> import django
    >>> django.get_version()
    ’1.2.1′

  2. UnacceptableVersionError: django 1.1 was requested, but 1.2.1.final.0 is already in use | Randell's Blog

    [...] The Django version I have in my machine is 1.2.1, while one of my apps running on Google App Engine utilizes use_library to use Django 1.1. Apparently, Django versions later than 1.1 is not included in the Google App Engine SDK. So everytime I try to access my app on my dev machine, I get this error: UnacceptableVersionError: django 1.1 was requested, but 1.2.1.final.0 is already in use [...]

Leave a Reply