Djangoプロジェクトを実行してこのエラーをデバッグしようとしています
ImproperlyConfigured: AUTH_USER_MODEL refers to model 'accounts.User' that has not been installed
ランニング
python manage.py migrate
繰り返す必要がありますが、私は python または django の専門家ではありません。ここでチームのために実行しようとしている他の誰かのプロジェクトを単に継承しただけです。
私は次の手順に従いました
install postgres
required modules including south
creating database for postgres
これをデバッグする方法について助けていただければ幸いです。
settings/base.py
含む
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
LOCAL_APPS = (
'apps.core',
'apps.accounts',
'apps.project_tool',
'apps.internal',
'apps.external',
)
したがって、apps.accounts は終了しますが、要求されAUTH_USER_MODEL = 'accounts.User'
ます。
AUTH_USER_MODEL = 'apps.accounts.User'?