Glenn Davy wrote: > just for my own curiosity how does the fire wall stop you using > ez-install? doesn't ez use http on port 80 to download each of the eggs > - just like your web browser would do if you manually tried to download > each of the eggs?
Hi Glenn (and everyone), In my case there is a MS Proxy server between me and the world and it only allows NTLM authentication. (I know, shudder!) Setup tools suggests using NTLM APS to proxy the connection, but I find it easier just to download the eggs, one at a time, and then do "easy_install -f . TurboGears". The "-f ." means use the current directory (which is where I have all the downloaded eggs). And for setuptools itself, it is available as a tarball and can be installed with the standard "python setup.py install". (no ez_setup required). You could even do "easy_install -zmaxd TurboGears" at home to just download the files and then bring in the files on a usb key and then "easy_install -f . TurboGears" from the usb drive. (After doing the setuptool install, that is). Though the single tarball that Ed is providing might be even easier. But it is nice to have option. Anyway, I hope this helps. Krys --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

