> In file included from src/module.c:24: > src/connection.h:33:21: sqlite3.h: No such file or directory > In file included from src/module.c:24: > src/connection.h:38: error: parse error before "sqlite3"
pysqlite is only a python mapping for sqlite : you need sqlite (executables AND headers) to be installed on your system before you easy_install pysqlite. On my debian sid, corresponding packages are : libsqlite3-0 SQLite 3 shared library libsqlite3-dev SQLite 3 development files sqlite3 A command line interface for SQLite 3 (may not be needed) Check sqlite web page (and/or your distrib's if you're using linux) to gather info on sqlite installation on your system. dom --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

