Я создал новое приложение python first_project/manage.py startapp first_app
,
и после этого добавил приложение в INSTALLED_APPS.
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'first_app']
И после python first_project/manage.py runserver
получаю ошибку:
Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x7fe13745f6a8>
...
ImportError: No module named 'first_app'
Почему я не могу добавить приложение?