Importing Django gives error. - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-10T01:23:22Zhttp://stackoverflow.com/feeds/question/205503http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/205503/importing-django-gives-error-1Importing Django gives error. [closed]Viky2008-10-15T16:53:25Z2008-10-15T20:17:18Z
<p>Installed Django on python2.6. when try to import modules it gives following error:</p>
<pre><code>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.
>>>
</code></pre>
<p>Can anyone help.</p>
http://stackoverflow.com/questions/205503/importing-django-gives-error/205531#2055312Answer by Ross for Importing Django gives error.Ross2008-10-15T16:58:40Z2008-10-15T17:15:46Z<p>There is only one g in Django and it is the second one.</p>
<p>Edit: Now that you've changed the question, you need to set the environment variable it mentions to point to your settings.py file.</p>
<p>Assuming you are in the folder containing your site...</p>
<p>On windows - set DJANGO_SETTINGS_MODULE=settings</p>
<p>On Linux/OSX - export DJANGO_SETTINGS_MODULE=settings</p>
<p>python</p>
<p>from django.db import models</p>
http://stackoverflow.com/questions/205503/importing-django-gives-error/206160#2061600Answer by Bill Barksdale for Importing Django gives error.Bill Barksdale2008-10-15T19:52:41Z2008-10-15T19:52:41Z<p>Did you run <code>django-admin.py startproject</code> when you created this project?</p>
http://stackoverflow.com/questions/205503/importing-django-gives-error/206247#2062471Answer by Sam Corder for Importing Django gives error.Sam Corder2008-10-15T20:17:18Z2008-10-15T20:17:18Z<p>This seems to be a <a href="http://stackoverflow.com/questions/182229/what-do-i-need-to-import-to-gain-access-to-my-models#184898">dupe</a></p>