How to check Django version

后端 未结 26 2557
梦如初夏
梦如初夏 2020-12-04 04:36

I have to use Python and Django for our application. So I have two versions of Python, 2.6 and 2.7. Now I have installed Django. I could run the sample application for testi

相关标签:
26条回答
  • 2020-12-04 05:38

    If you have installed the application:

    $ django-admin.py version
    2.0
    
    0 讨论(0)
  • 2020-12-04 05:38

    Simply type python -m django --version or type pip freeze to see all the versions of installed modules including Django.

    0 讨论(0)
提交回复
热议问题