Robc, I've had no problems whatsoever developing TG apps (or other python apps) on Windows.
The only problem you are likely to encounter (that I'm aware of) is the one you ran into, which is using setuptools to install some of the DB backends. This is more of an issue with the maintainers of those backends than with Windows, per se, as some of them don't provide binary eggs for distribution. You should be able to find binary eggs from third-parties, though (like the TG devs, IIRC). For SQLite, I always use the Windows installer from pysqlite.org, rather than setuptools. This is pretty common practice for me for any python module that contains C extensions, since the compiler setup is a) different for every package/module and b) a pain to get right in any case. Kevin Horn On 3/13/07, Jorge Godoy <[EMAIL PROTECTED]> wrote: > > > "gasolin" <[EMAIL PROTECTED]> writes: > > > Besides, pysqlite is an build in module in python 2.5 (called > > sqlite3), so you don't need to install pysqlite by yourself if you are > > using python 2.5 > > (But you have to use SQL Object 0.8+) > > -- > Jorge Godoy <[EMAIL PROTECTED]> > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

