プロジェクトをセットアップしたところ、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という名前のモジュールがありません
何がうまくいかないかについてのアイデアはありますか?