Reputation: 5564
this is the first time i use django. I'm really a beginner. And this is the first time i see the page "It worked! Congratulations on your first Django-powered page.". it's mean i'm now have a django+python in my xampp server. So i cam to the question ?
Upvotes: 17
Views: 27937
Reputation: 241
python manage.py runserver
Output:
Validating models...
0 errors found February 27, 2015 - 14:25:41 Django version 1.6.5, using settings ... ....
Upvotes: 2
Reputation: 70984
For the third question, you can get the list of available modules from the interpreter prompt:
>>> help()
help> modules
This will (eventually) give you a list of available modules.
For other info, you can use the sys
module:
import sys
sys.version # Python version
sys.platform # platform
Upvotes: 2
Reputation: 38412
As to your first question:
jcomeau@intrepid:/usr/src/unternet$ python
Python 2.6.6 (r266:84292, Oct 9 2010, 11:40:09)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.get_version()
'1.2.3'
Upvotes: 37