Windows 7: My project is in: C:\Python26\Lib\site-packages\mysite
I'm working on this section: Playing with the API http://docs.djangoproject.com/en/dev/intro/tutorial01/#playing-with-the-api When I do (Windows+R >cmd >OK) to do python shell (python manage.py shell) it works. But I have try other tool that come with Python26 is IDLE (Python GUI) and I get an error: ================================================================ Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. **************************************************************** Personal firewall software may warn about the connection IDLE makes to its subprocess using this computer's internal loopback interface. This connection is not visible on any external interface and no data is sent to or received from the Internet. **************************************************************** IDLE 2.6.4 ==== No Subprocess ==== >>> import mysite >>> from mysite.polls.models import Poll, Choice Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> from mysite.polls.models import Poll, Choice File "C:\Python26\Lib\site-packages\mysite\polls\models.py", line 1, in <module> from django.db import models File "C:\Python26\Lib\site-packages\django\db\__init__.py", line 10, in <module> if not settings.DATABASE_ENGINE: File "C:\Python26\Lib\site-packages\django\utils\functional.py", line 269, in __getattr__ self._setup() File "C:\Python26\Lib\site-packages\django\conf\__init__.py", line 38, in _setup 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. >>> ================================================================ I don't understand how and where to settings DJANGO_SETTINGS_MODULE? Thanks, Mikey3D -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.