apm wrote: > After considering all the Python Web frameworks out there I finally > settled on TurboGears. Its open nature appeals to me and my plans for > an interactive site. However, I am a bit confused about the state of > TG 1.0, 1.1, 2.0. Where to start?
I recommend using the current stable version with SQLAlchemy and Kid-, and then migrate your projects to 1.1 (Genshi is very similar to Kid) and 2.0 when there will be stable releases. > So, being prepared for things to come, I decided to use TG 1.0.3.2 > with SQLAlchemy (and Genshi, MochiKit/Dojo later on, hopefully) and to > follow the Rough Docs at http://www.splee.co.uk/2006/10/14/simpleblog-part-1/. > > However, after the first little editing of model.py the only thing I > get is the following: Maybe you installed SA 0.4, but TG 1.0.3.2 works only with SA 0.3.x. This will be fixed in TG 1.0.4. > After that, I tried the same in TG 1.0.4b1 and was told that my sqlite > was outdated. The TG egg did not update it automatically and I cannot > figure out how to do this manually - stupid me. What now? Actually it is SA asking for an update of sqlite. But that's simple, just type: easy_install pysqlite -- Christoph --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

