Installed App Not Found in Django
Published On: 28/07/2022 | Category:
Django
Python
Hi Dev,
In this tutorial, I will show you installed app not found in django. This article goes in detailed on installed app not found in django and python. We will use installed app not found in django directory. This article will give you simple example of installed app not found in django example.
We will use installed app not found in django directory. check your in setting.py file in INSTALLED_APPS section.
Here, below describe the simple solution...
Solution:You might want to check INSTALLED_APPS section in you settings.py file. If 'blog', is not added you should consider adding. After this you should proceed to python manage.py syncdb. Last step check your urls.py and see if all necessary URL mapping exists.
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'blog', ]
I Hope It will help you....