A couple tips for installing on Tiger... this is not intended to be complete but it may help for updating the docs ... it's just based on some noodling today. disclaimer, etc.
The most important thing I noticed is this: Any place in the instructions where you're using ez_setup.py or easy_install be sure to add the option "--script-dir /usr/local/bin" (without the quotes) ... otherwise the stuff gets installed someplace else and doesn't work. After installing MacPython and the Tiger Fix, you have to install setuputils: Go to http://peak.telecommunity.com/DevCenter/EasyInstall#installing-easy-install Download ez_setup.py and then (from the dir where you put it): sudo python ez_setup.py -U -D --script-dir /usr/local/bin -U setuputils Then update your docutils: sudo easy_install -U -D --script-dir /usr/local/bin docutils If you want sqlite to work: sudo easy_install -U -D --script-dir /usr/local/bin pysqlite Ok, AFTER you do all that, try to get TG working. Otherwise you'll be disappointed. Also, read the notes on the new version because some things changed such that if you follow the 20 minute Wiki tutorial as currently posted (or just download the code), it won't work: http://www.turbogears.org/about/changelog.html HTH...

