Django manage.py can't find an INSTALLED_APP even though the module is in the path

Posted by Rhubarb on Stack Overflow See other posts from Stack Overflow or by Rhubarb
Published on 2010-04-04T13:04:31Z Indexed on 2010/04/04 13:13 UTC
Read the original article Hit count: 289

Filed under:
|

When I run python manage.py shell I get an error about the last app I've added to INSTALLED_APP, namely django_evolution, saying it's an undefined module. This is despite the fact that I've added the path to django_evolution to the system path. In fact right after this error I can run python and do an import on django_evolution and everything is fine. Why isn't django or python seeing this module when clearly it's been setup and even added to the path?

© Stack Overflow or respective owner

Related posts about python

Related posts about django