0

我是 django-nonrel 的新手,我正在尝试让 djang0-testapp 运行。

我什至无法创建超级用户。我正在按照此处的说明进行操作

我从这里下载了 django-testapp

我按照说明将所有必需的文件夹放在 django-testapp 中。

我注意到 settings.py 文件与 manage.py 文件一起位于项目文件夹中。

这与普通的 django 不同,后者有一个包含 manage.py 文件的项目文件夹和一个包含 settings.py 文件的内部文件夹。

当我尝试创建超级用户时,我收到以下错误消息。

C:\Users\laurence\Documents\GitHub\django-testapp>manage.py createsuperuser
Error: Can't find the file 'settings.py' in the directory containing 'C:\\Users\
\laurence\\Documents\\GitHub\\django-testapp\\manage.py'. It appears you've cust
omized things.
You'll have to run django-admin.py, passing it your settings module.
(If the file settings.py does indeed exist, it's causing an ImportError somehow.

)

4

1 回答 1

0

这与django-nonrel.


你的settings.py文件存在吗?

如果是这样,它可能在语法上不正确,运行python settings.py以识别SyntaxError.

于 2013-08-31T15:53:29.867 回答