Importing Django gives error. - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-10T01:23:22Z http://stackoverflow.com/feeds/question/205503 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/205503/importing-django-gives-error -1 Importing Django gives error. [closed] Viky 2008-10-15T16:53:25Z 2008-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 "&lt;pyshell#1&gt;", line 1, in &lt;module&gt; from django.db import models File "C:\Python26\Lib\site-packages\django\db\__init__.py", line 9, in &lt;module&gt; 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. &gt;&gt;&gt; </code></pre> <p>Can anyone help.</p> http://stackoverflow.com/questions/205503/importing-django-gives-error/205531#205531 2 Answer by Ross for Importing Django gives error. Ross 2008-10-15T16:58:40Z 2008-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#206160 0 Answer by Bill Barksdale for Importing Django gives error. Bill Barksdale 2008-10-15T19:52:41Z 2008-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#206247 1 Answer by Sam Corder for Importing Django gives error. Sam Corder 2008-10-15T20:17:18Z 2008-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>