Alistair Campbell wrote: > This happened to me just recently and I had to explicitly add the full > path to pysqlite to PYTHONPATH. I'm sure there is a better way of > doing it, but (on Windows) I had to add: > > C:\Python24\Lib\site-packages\pysqlite2 > explicitly, even though I already had the site-packages path added.
What is contained in that folder? If that was actually what fixed your problem then pysqlite2 was not installed correctly. There should be "dbapi2.py" and some other files. If that's right then you don't want the "site-packages/pysqlite2" dir in the path. Maybe the files got put in another folder below that "site-packages/pysqlite2/pysqlite2" in which case you could get rid of the nesting and remove the extra PYTHONPATH. -- Matt Good --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac 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/trac-users -~----------~----~----~----~------~----~------~--~---
