Rob wrote: > b) I then followed the advice of "[EMAIL PROTECTED]" on the above thread who > suggested basically a complete fresh make install of Python 2.5 and > TG.
This is *never* a good idea. Package managers were invented for a reason, and compiling from source and leaving unmanaged files all around your system is just going to break things further. The safest way to install TurboGears on your feisty machine is to start with a virtual-python installation of python 2.4 (which is currently still the recommended version, I believe?). From now on, use this virtual python installation for TurboGears, and use easy_install to install all the python eggs that you want. Because you are using a virtual python installation, all the eggs will be installed within your home directory, and you can easily manage which versions you want, without conflicting with system-installed versions of the packages. Details are at: http://peak.telecommunity.com/DevCenter/EasyInstall --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

