Kevin Dangoor wrote: > On 1/16/06, Karl Guertin <[EMAIL PROTECTED]> wrote: > > > > I'm deploying a TG app to a machine that isn't connected to the > > internet. I know I can do an easy_install -f on a directory with all > > the eggs, but I'm looking for a simple way to fetch all the dependency > > eggs into a single directory. Any tips? I've looked through the > > easy_install docs but didn't see anything obvious. > > I don't know of one. I'm planning to put together a tarball with all > of the eggs somewhere along the way, but I haven't done so yet. > > Kevin
If your system has wget installed you can do something like this I think: wget -r -l1 --no-parent -A.egg http://www.turbogears.org/download/eggs/ (NOT TESTED) Ciao Michele

