↧
Answer by aumo for Django Import Error: No module named apps
You need to add an empty __init__.py (4 underscores in total) file in the apps folder for it to be recognized by Python as a package.Have a look at the documentation for more informations.
View ArticleDjango Import Error: No module named apps
I just checked out a project with git. The project structure is project apps myapp settings __init__.py __init__.py manage.pyThere are other directories and files, but I think those are the important...
View Article