How to check Django version

后端 未结 26 2603
梦如初夏
梦如初夏 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:30

    Django version or any other package version

    Open the terminal or command prompt

    Type

    pip show django
    

    or

    pip3 show django
    

    You can find any package version...

    Example:

    pip show tensorflow
    
    pip show numpy
    

    etc....

提交回复
热议问题