On Thu, Mar 12, 2009 at 12:29 PM, Mark Ramm <[email protected]> wrote: > > If your problem is the proxy, you don't need a newer python. > > What problem are you trying to solve by installing mod-wsgi. You > mention something not being ready for windows, but don't provide > enough data for me to figure out what you need. > > Either way if you are planning to update python, use 2.5 or 2.6, not > 3.0, since many of TG's dependencies are not yet 3.0 compatible. >
python 2.5 is fine...I wasn't sure what version you had since you did mentioned it. You have a proxy that explains why its not working... Each tool that you want to install might have some dependencies... (modwsgideploy is dependent on pasterscript which depends on paste which depends on... ....and a lot of other software. Easy_install can read the requirements and install each required software from pypi.python.org . In your case because of some proxy issues you are not able to talk to pypi servers and therefore cannot download the required packages. I would try to figure out a way to be able to reach pypi. If you can't then you need to download sourcecode from pypi.python.org for each software, unzip it and do python setup.py install but that will take some time. Lucas --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

