As Collin said, if your script isn't running from within a "proper"
Django environment, you have to ensure that your settings module is
correctly specified. You can do it several ways...

1. Using Django's setup_environ:

# put before any django imports, at the top of your file
from django.core.management import setup_environ
import yourproject.settings
setup_environ(yourproject.settings)

2. Using Python's os module:

# also before any other django imports
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'yourproject.settings'

3. Actually setting the environment variable DJANGO_SETTINGS_MODULE in
your shell. If you don't know how to do that already, you should
probably use one of the other two options.

--------
Nathan Ostgard

On Jul 17, 2:43 pm, Collin Grady <[EMAIL PROTECTED]> wrote:
> If you don't use "manage.py shell" you must set your environment
> properly - set the DJANGO_SETTINGS_MODULE and PYTHONPATH properly,
> similar to how the modpython docs show you to set them for that to
> work.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to