Re: help setting 'apps' folder... path issue

2010-09-22 Thread Bill Freeman
Or you can add it to sys.path in your settings.py file. On Wed, Sep 22, 2010 at 10:43 AM, Shawn Milochik wrote: > It's probably your PYTHONPATH. > > Check the result of: > > echo $PYTHONPATH > > I'm guessing that your apps directory is not in the path. If not, you can add > it to your path. > >

Re: help setting 'apps' folder... path issue

2010-09-22 Thread Shawn Milochik
It's probably your PYTHONPATH. Check the result of: echo $PYTHONPATH I'm guessing that your apps directory is not in the path. If not, you can add it to your path. export PYTHONPATH=yourdirectory:$PYTHONPATH -- You received this message because you are subscribed to the Google Groups "Djan

help setting 'apps' folder... path issue

2010-09-22 Thread justin jools
I am trying to run my apps from 'apps' folder and have 'apps.registration' installed apps/settings.py but the admin.py is having some problem with the path and I get error in admin: ImportError at /admin No module named registration.models Request Method: GET Request URL: http://devhead.alwaysd