Answers for "how to check installed django version"

0

check if django is installed

#Make sure you are in your applications venv
i.e (source "application"_env/bin/activate)
# Then run the below command 
python -m django --version
Posted by: Guest on January-26-2021
2

check django version windows

>>> import django
>>> django.VERSION
(2, 0, 0, 'final', 0)
Posted by: Guest on November-16-2019

Code answers related to "how to check installed django version"

Python Answers by Framework

Browse Popular Code Answers by Language