buffalob schrieb: > There's still no "easy uninstall" for TG, correct?
Yes, but you can just delete all the eggs (Python packages) that were installed with TurboGears from the 'site-packages' directory in your Python library directory. On Windows this is usually C:\Python24\Lib or C:\Python25\Lib, depending on your Python version and what you specified when you installed Python. You should also remove the references to these eggs from the easy-install.pth file in this directory, but this is not strictly necessary. See also: http://docs.turbogears.org/roughdocs/uninstall Here's a list of packages that get installed with TurboGears on my system. Version numbers might differ on your system: Cheetah-2.0rc8 CherryPy-2.2.1 configobj-4.4.0 DecoratorTools-1.4 elementtree-1.2.6_20050316 FormEncode-0.7.1 kid-0.9.5 Paste-1.3 PasteDeploy-1.3 PasteScript-1.3.4 PyProtocols-1.0a0dev_r2302 RuleDispatch-0.5a0.dev_r2306 simplejson-1.7.1 SQLObject-0.9.0 TurboCheetah-0.9.5 TurboGears-1.0.2.2 TurboJson-1.0 TurboKid-1.0.1 > If I can get by with my apparently successful TG installation and just > use regular Python file reading/writing capabilities for data storage, > I think I'd be ok for my first project or two. I don't think, that you would do yourself a favour with this unless your data files are *very* simple. As soon as you want to search data efficiently, flat text files get very complicated and SQL is so much nicer. Besides you lose the power and eas of use of SQLObject/SQLAlchemy. > Also wondering about longer term when my next project might need some > simple database support, should I bite the bullet and uninstall TG to > allow pysqlite, or find the next-simplest sql product (MySQL, or > something else?). If you are using Python 2.5, SQLite is already included in the standard Python distribution as the module "sqlite3", which should work with SQLObject and TurboGears. Chris --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

