Yes.
INSTALLED_APPS helps django synchronize the database, run tests, get URLs and other related problems.
Perhaps your installed applications are still working, because the main one calls others with import, the django application is nothing more than a simple python module that is imported when called in the settings file, so you get an invalid syntax error after starting the development server. because imports will not work with invalid syntax.
Fitoria
source share