On Thu, 10 Nov 2005 12:16:47 -0500 Waylan Limberg wrote: > > On 11/10/05, James Bennett <[EMAIL PROTECTED]> wrote: > > > > On 11/10/05, felix <[EMAIL PROTECTED]> wrote: > > > do this: > > > export DJANGO_SETTINGS_MODULE=myproject.settings > > > > Yeah, that's mentioned in the documentation. Perhaps what was > > happening was that you'd changed a .bash_profile or .bashrc file to > > set your DJANGO_SETTINGS_MODULE and PYTHONPATH, and then hadn't > > exported those values or sourced the file? > > > I still don't have it working for me, and I did the export > DJANGO_SETTINGS_MODULE=myproject.settings thing. Whats the best way to > see what your PYTHONPATH is set to and change it? Maybe something is > wrong there. (I'm on Debian with python 2.3)
For my interactive sessions, I run the following commands (I actually have them in a file devel.py, and I cd to the folder containing devel.py, and do "import devel" from within a python session): import sys import os sys.path = sys.path + ['/path/to/my/app/','/path/to/django/src/'] os.environ['DJANGO_SETTINGS_MODULE'] = 'myapp.settings' Alternatively, to set it permanently, put the export PYTHONPATH and DJANGO_SETTINGS_MODULE settings in your ~/.bashrc, then start a new bash session. Luke Luke -- "I washed a sock. Then I put it in the dryer. When I took it out, it was gone." (Steven Wright) Luke Plant || L.Plant.98 (at) cantab.net || http://lukeplant.me.uk/