Skip to content Skip to sidebar Skip to footer

Why Can't Python Find My Module?

I'm getting this error every time I type python manage.py runserver in the root server of my Django app. ImportError: No module named utils I just added a new app to my project ca

Solution 1:

  • utils should be moved one level up, from "templates" to "ecomstore".
  • The init files should be named __init__.py, not init.py.
  • It is very unusual to have .py-endings for directories

I would strongly suggest to do teh django tutorial first if your book is outdated and after you succeed with this, try to adapt the book content to what you learned in the tutorial.


Post a Comment for "Why Can't Python Find My Module?"