5 messages in com.googlegroups.pylons-discussRe: Deploying with virtualenv fails
FromSent OnAttachments
Christoph Haas29 Jun 2008 04:15 
Christoph Haas29 Jun 2008 07:39 
Mike Orr29 Jun 2008 08:05 
Ben Bangert29 Jun 2008 19:21 
Ian Bicking29 Jun 2008 20:51 
Subject:Re: Deploying with virtualenv fails
From:Ben Bangert (be@groovie.org)
Date:06/29/2008 07:21:35 PM
List:com.googlegroups.pylons-discuss

On Jun 29, 2008, at 7:40 AM, Christoph Haas wrote:

I found out something. If I build the egg with the same version as on the target (deployment) system the easy_install works. Instead of "python setup.py bdist_egg" (with Python 2.5 being the default here) I explicitly ran "python2.4 setup.py bdist_egg".

Binary dist egg's only work on the same Python system. If you want a egg that works on other Python versions, use sdist instead of bdist_egg.

Cheers, Ben