> > It does, but at the moment you can only install .8.8 and .8.4. This is because we only add stable releases to our one-click installer. We'll add the next stable TG release as soon as it comes out.
> I know that Webfaction folks hang out here, but it's late in the day > for them (middle of the night, actually). You may very well see a > reply here tomorrow, though this is certainly not an official support > forum. > > If they have things set up conveniently for you, you can just > > easy_install -f http://www.turbogears.org/preview/download/ TurboGears This won't work because it would require root access on the box. Plus it would install this particular version globally, which we don't want because different users want to use different versions. To solve this problem we give each user their own little "environment" using their HOME directory: we add $HOME/lib/python2.4 to everybody's PYTHONPATH (using sitecustomize.py) and $HOME/bin to everybody's PATH. That way each user can just put the python modules (or eggs) that they need in their $HOME/lib/python2.4, and the corresponding scripts (TG scripts for instance) in $HOME/bin. So, to install the TG version that you want, all you have to do is to use the "-d" and "-s" options of easy_install to tell it where to put the eggs and the scripts: easy_install -d $HOME/lib/python2.4 -s $HOME/bin -f http://www.turbogears.org/preview/download/ TurboGears Remi. PS: Note that this doesn't work right now because it gives the following error: $ easy_install -d $HOME/lib/python2.4 -s $HOME/bin -f http://www.turbogears.org/preview/download/ TurboGears Searching for TurboGears Reading http://www.turbogears.org/preview/download/ Best match: TurboGears 0.9a6 Downloading http://files.turbogears.org/eggs/TurboGears-0.9a6-py2.4.egg error: Can't download http://files.turbogears.org/eggs/TurboGears-0.9a6-py2.4.egg: 502 Bad Gateway Kevin, is that a pb on your end ? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

