0

我是 Django 的新手。我在 Windows 7 上使用 Eclipse Juno 进行 Django 开发。

我已经正确安装了 Python2.7 并在 Eclipse 中创建了一个名为 Student 的项目。该项目包含两个子文件夹:srcpython2.7.

src目录包含两个文件:Studentinit.py. 我无法创建 manage.py、settings.py 等。我使用 powershell 在python manage.py startproject Student里面输入,c:\Eclipse\workspace\Student但收到此错误:

can't open file 'manage.py':errno 2 No such file or directory

4

1 回答 1

2

根据文档startproject要像这样执行:

python django-admin.py startproject Student

完成该过程后,将为您创建 manage.py。

于 2013-05-07T18:04:29.317 回答