Get the version of Django for application

后端 未结 6 1672
感动是毒
感动是毒 2021-02-18 22:33

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

6条回答
  •  情话喂你
    2021-02-18 23:17

    https://docs.djangoproject.com/en/1.7/intro/tutorial01/:

    python -c "import django; print(django.get_version())"
    

    which gets me the following:

    1.7.1
    

提交回复
热议问题