我有一個projectfolder結構是這樣的:應用中的子文件夾在1.7
project
applications
__init__.py
app1
app2
app3
project
__init__.py
settings.py
在我的settings.py我試着導入這樣的應用:
INSTALLED_APPS = (
'django.contrib.admin',
...
'applications.app1',
'applications.app2',
'applications.app3',
)
但是,如果我試圖將遷移應用程序之一,我得到這個錯誤:
./manage.py makemigrations applications.app1
App 'applications.app1' could not be found. Is it in INSTALLED_APPS?
出了什麼問題?這種設置的使用Django的工作1.6
太棒了!謝謝! –
davidhwang解釋正確的解決方案。 – pymarco