I recently moved a django app from c:\Users\user\django-projects\foo\foobar to c:\Python25\Lib\site-packages\foo\foobar (which is on the python path). I started a new app in the django-projects directory, and added foo.foobar to the INSTALLED_APPS setting. When I try to run the dev server (manage.py runserver) for my new app, I get the error ImportError: No module named foobar.
Looking through the traceback, it's looking in the c:\Users\user\django-projects\foo\..\foo\foobar for the foobar app. I checked my PATH and PYTHONPATH environment variables, and neither point to c:\Users\user\django-projects\foo and It doesn't show up in sys.path when I run the python interpreter.
I'm guessing I somehow added c:\Users\user\django-projects\foo to django's path sometime along the development of foo but I don't remember how I did it.
So, with all that lead up, my question is "how do I make manage.py look in c:\Python25\Lib\site-packages instead of c:\Users\user\django-projects\foo?"
Thanks,
- Lexo
sys.path. However, I am guessing that yoursite-packages\foodirectory is simply missing an__init__.py– WoLpH Aug 5 '10 at 1:32sys.paththe only place thatmanage.pylooks? If so, how come it's still looking in the non-existentdjango-projects\foodirectory? Also, I do have the__init__.pyfile insite-packages\foo– Lexo Aug 5 '10 at 1:41