Please tell me how to check the Django version

Asked 2 years ago, Updated 2 years ago, 85 views

My computer has both Python 2.6 and 2.7 installed

I'd like to know. Where should I check?

django python

2022-09-22 22:15

1 Answers

Django 1.5 supports Python 2.6.5 and later versions only.

To check the Python version in the Linux shell

python -V

To check Django version From the Python console

import django
django.VERSION

Please.


2022-09-22 22:15

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.