As far as a repeatable Pylons installation from local packages goes, I've set up a system using pip -- not sure about easy_install. First, I create a virtualenv and install all necessary packages into it. With pip you can use the -E flag to specify a virtualenv directory, as in:
virtualenv --no-site-packages $VENV pip install -E $VENV pylons Next, I use pip's freeze feature to generate a list of installed packages in the virtualenv, and re-download the packages for them as tarballs: pip freeze -E $VENV >packages.txt pip install -d $PKGDIR -r packages.txt Then, on the target machine, assuming all the packages have been copied over: pip install --no-deps -E $VENV $PKGDIR/* -- Jason -- You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en.
