0

I'm sure I'm overlooking something very simple, but I've tried multiple times and still run into the same problem.

I have installed Python 2.7.1 and Django 1.2.4 on Windows Vista.

I create a project using django-admin startproject projectname. It successfully creates the folders and files needed.

I then try running manage.py runserver and all I receive in return is the available commands and options for manage.py.

What am I missing here? I see no output other than this.

Thanks in advance.

William
  • 1,517
  • 1
  • 12
  • 26

1 Answers1

1

have you run manage.py runserver and if you have, then try python manage.py runserver?

darren
  • 18,845
  • 17
  • 60
  • 79
  • cool! It's strange on one machine I have manage.py runserver and on another machine i have to also go python manage.py runserver. ^_^ – darren Feb 17 '11 at 17:22
  • Quite possible; check the file associations, presumable one machine has .py configured to automatically run with Python and the other doesn't. – Hugh Bothwell Feb 17 '11 at 17:42