0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

makemigrationsコマンドを実行するとNo installed app with labelエラーが出る

Posted at

現象

python manage.py makemigrations {任意のapp名}コマンドを実行すると
No installed app with labelエラーが出る。

解決法

settings.pyのINSTALLED_APPSに{任意のapp名}を追加します。

settings.py
INSTALLED_APPS = [
    '{任意のapp名}',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?