http://docs.djangoproject.com/en/dev/intro/tutorial01/
Use the command line to get to whatever folder you want to store your Django project in. Type “django-admin.py startproject Blog”. Django will create a “Blog” folder and put some initial files into it for you.
Change directory into the Blog folder, and start the development server:
python manage.py runserver
Watch the messages, and then go to a browser to the URL “http://localhost:8000/”. If it says “It worked!” then you’re good to go.