Home > Blockchain >  module not found when using include in django
module not found when using include in django

Time:07-24

I'm trying to use include in my app following the tutorial here - enter image description here

I don't understand what I'm doing wrong. It seems to fail to recognize anything outside the web_questions folder, but I can't find a way to give it the absolute path. I'm running the server using this command line -

py web_questions/manage.py runserver

Help!

Karin.

CodePudding user response:

That web_questions folder content should be in the same directory as mimi.

Example.

CodePudding user response:

please check wheather your module "mimi" is present in the INSTALLED_APPS List in the settings.py file. If not u can add it in INSTALLED_APPS List.

  • Related