If you are using Django and wish to check what version it is using you can issue the following from the command line in linux.
python import django print django.VERSION
This will launch python, and you should be at a prompt such as >>> . Enter the next 2 commands. To exit python press CTRL-D.
On a side note if you wish to know the python version also run the following:
python -V



