marekw2143 wrote: > Hi > > I've installed python 2.5.2 into D:\P25 folder. > Then i installed diango using python setup.py install. > After that, when i typed: > > >>>> import django >>>> > > everything was ok, but when i type: > > >>>> import diango.db >>>> > > i get the following message: > > > > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > File "d:\P25\Lib\site-packages\django\db\__init__.py", line 9, in > <module> > if not settings.DATABASE_ENGINE: > <snip>
python can't find your configuration settings.py file. You need to create a django application first. Read: http://docs.djangoproject.com/en/dev/intro/tutorial01/ > What is the solution for this problem ? > > Regards, Roland van Laar --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

