alind schrieb: > I want to install tg2 on an offline machine. > I have downloaded all the eggs using this command: > > mkdir tg2_offline > cd tg2_offline > easy_install -zmaxd . TurboGears2 > > Now as the docs suggest I should copy this directory (tg2_offline) > into the offline machine and run > cd tg2_offline > easy_install -f . TurboGears > > Now I dont want a system wide installation. I want to set up the > virtualenv environent just like done by this command on online > machine.python tg2-bootstrap.py --no-site-packages tg2env > > python tg2-bootstrap.py --no-site-packages tg2env
I don't think this works. But it shouldn't be hard to install: - create the virtualenv yourself, using "virtualenv tg2env". of course you need the virtualenv-egg as well, and that must be installed beforehand! Generelly, you need setuptools installed, if that's not on your machine, I'm not sure how to do that. - use easy_install with a "-i" option with a file-url that points to your egg-dir, that *should* work. If it doesn't, then you should be able to do "easy_install *.egg" inside the egg-dir also. Diez --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

