On Thu, Mar 29, 2012 at 07:56:54AM +0200, Thierry Florac wrote:
> Le Wed, 28 Mar 2012 19:21:51 +0000, "Bahr, Eric"
> <eric.b...@northwestern.com> a �crit:
> 
> > I am using the following that seem to be working fine, and I would
> > like to continue using them, but don't know how to transfer them to
> > another computer: ZODB-3.10.0b1-py2.5-win32.egg
> > zope.event-3.5.1-py2.5.egg zope.interface-3.8.0-py2.5-win32.egg
> > transaction-1.1.1-py2.5.egg
> > zc.lockfile-1.0.0-py2.5.egg
> > zconfig-2.9.0-py2.5.egg
> > zdaimon-2.0.4-py2.5.egg
> 
> You should probably use zc.buildout.
> It will allow you to easily define the packages (and their versions)
> you need...

Or you could use a pip requirements.txt file:

  $ cat requirements.txt
  zope.event==3.5.1
  transaction==1.1.1
  zc.lockfile==1.0.0
  ...

and install them all with 'pip install -r requirements.txt'.  (In a
virtualenv, obviously, because cluttering site-packages does not scale.)

Buildout is much more capable, but has a somewhat steeper learning curve.

Marius Gedminas
-- 
If you are angry with someone, you should walk a mile in their shoes... then
you'll be a mile away from them, and you'll have their shoes.

Attachment: signature.asc
Description: Digital signature

_______________________________________________
For more information about ZODB, see http://zodb.org/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zodb-dev

Reply via email to