shox
shox

Reputation: 1160

manage.py not generated

I just installed django after i run django-admin.py startproject test2

  BOX@BOXLinux:~/django/test2/test2$ ls
  __init__.py  settings.py  urls.py  wsgi.py

There is no file called manage.py ? is my mistake or a bug in django

Upvotes: 0

Views: 144

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 600059

You appear to be using the development version, for some reason. In that version, the structure has changed a bit so that manage.py is in the directory above.

You should really be using version 1.3, until 1.4 is released.

Upvotes: 3

Related Questions