Re: Cannot connect to database

2007-09-24 Thread Bert Heymans
You could give http://www.instantdjango.com/ a try, maybe snoop around a little in the installation to see how they set things up, just to learn from. I helped a colleague on a Windows Xp set up Django last week, instantdjango works well but it has it's own python interpreter that comes with the

Re: Cannot connect to database

2007-09-23 Thread Chris Lee-Messer
I don't use windows very much, but it sounds like your version of python does not have the sqlite2 module installed, see http://cheeseshop.python.org/pypi/pysqlite/2.3.4 If you are new to python, it might be useful for you to use easy_install to download packages and resolve dependencies. You

Cannot connect to database

2007-09-23 Thread Goon
Newbie question: I'm trying to use a sqlite3 database on a windows machine, I get this error when I run "manage.py syncdb" : django.core.exceptions.ImproperlyConfigured: Error loading pysqlite2 module: No module named pysqlite2._sqlite how can I get django to find my database? --~--~-