0 votes
in Data Handling by
How do you check for the version of Django installed on your system?

1 Answer

0 votes
by
To check for the version of Django installed on your system, you can open the command prompt and enter the following command:

python -m django –version

You can also try to import Django and use the get_version() method as follows:

import django

print(django.get_version())

Related questions

0 votes
asked Apr 3, 2020 in Data Handling by amita rallin
0 votes
asked Apr 3, 2020 in Data Handling by amita rallin
...