Answers for "how to check the django version cmd"

2

command to check what version of django is installed

python3 -m django --version // mac
py -m django --version // windows
Posted by: Guest on March-06-2020
0

Check django version in your system

>>> import django
>>> django.VERSION
(2, 0, 0, 'final', 0)
Posted by: Guest on April-25-2021

Code answers related to "how to check the django version cmd"

Python Answers by Framework

Browse Popular Code Answers by Language