我刚刚设置了我的项目,但在让 Django 工作时遇到了问题。这是我的buildout.cfg
:
[buildout]
parts = python django
develop = .
eggs = myproject
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[django]
recipe = djangorecipe
project = myproject
settings = settings
wsgi = true
fcgi = true
我通过运行生成了我的 Django 项目
$ bin/django startproject myproject src/
设置文件肯定存在并且看起来不错,但我收到以下错误:
错误:无法导入设置“myproject.settings”(它在 sys.path 上吗?):没有名为 myproject.settings 的模块
关于出了什么问题的任何想法?