vote up -1 vote down star

Installed Django on python2.6. when try to import modules it gives following error:

from django.db import models

Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    from django.db import models
  File "C:\Python26\Lib\site-packages\django\db\__init__.py", line 9, in <module>
    if not settings.DATABASE_ENGINE:
  File "C:\Python26\Lib\site-packages\django\conf\__init__.py", line 28, in __getattr__
    self._import_settings()
  File "C:\Python26\Lib\site-packages\django\conf\__init__.py", line 57, in _import_settings
    raise ImportError("Settings cannot be imported, because environment variable %s is undefined." % ENVIRONMENT_VARIABLE)
ImportError: Settings cannot be imported, because environment variable DJANGO_SETTINGS_MODULE is undefined.
>>>

Can anyone help.

flag

Can you change the question to "Importing Django without defining DJANGO_SETTINGS_MODULE" produces an error which says "DJANGO_SETTINGS_MODULE is Undefined" What do I do now?" That seems to be the actual question. – S.Lott Oct 15 '08 at 21:36
this has already been asked: stackoverflow.com/questions/182229/… – hop Oct 16 '08 at 7:58

closed as exact duplicate by S.Lott Oct 16 '08 at 14:39

3 Answers

vote up 2 vote down check

There is only one g in Django and it is the second one.

Edit: Now that you've changed the question, you need to set the environment variable it mentions to point to your settings.py file.

Assuming you are in the folder containing your site...

On windows - set DJANGO_SETTINGS_MODULE=settings

On Linux/OSX - export DJANGO_SETTINGS_MODULE=settings

python

from django.db import models

link|flag
Thanks for your reply. Can you please see the error now. – Viky Oct 15 '08 at 17:00
Not sure it is tested on 2.6, and it looks like it can't find your settings file. Are you trying to load it in the interpreter? You need to tell it where your settings.py file is (set the environment variable it mentions to point to the file). – Ross Oct 15 '08 at 17:02
I was wrong, it is working with 2.6 groups.google.com/group/django-developers/… – Ross Oct 15 '08 at 17:36
vote up 1 vote down

This seems to be a dupe

link|flag
vote up 0 vote down

Did you run django-admin.py startproject when you created this project?

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.