[sqlalchemy] Re: Side by side versions on one machine.

2011-04-26 Thread GHZ
Try virtualenv http://pypi.python.org/pypi/virtualenv On Apr 26, 2:31 pm, Mathieu Tozer math...@madebysofa.com wrote: Is it possible to have multiple installation versions on the one machine? I don't want to screw with my dev environment too much but want to try migrating up. -- You

Re: [sqlalchemy] Re: Side by side versions on one machine.

2011-04-26 Thread Mike Conley
If you only want to change the SQLAlchemy version and use easy install tools, I have done it by altering the sqlalchemy path in site_packages/easy-install.pth I find that easier than setting up virtual environments. If you need to change a lot of things including maybe the Python version, then

Re: [sqlalchemy] Re: Side by side versions on one machine.

2011-04-26 Thread werner
On 04/26/2011 03:24 PM, Mike Conley wrote: If you only want to change the SQLAlchemy version and use easy install tools, I have done it by altering the sqlalchemy path in site_packages/easy-install.pth Or do this before you import SQLAlchemy: I find that easier than setting up virtual

Re: [sqlalchemy] Re: Side by side versions on one machine.

2011-04-26 Thread werner
On 04/26/2011 03:24 PM, Mike Conley wrote: If you only want to change the SQLAlchemy version and use easy install tools, I have done it by altering the sqlalchemy path in site_packages/easy-install.pth Sorry clicked wrong button to fast Use the multi version install, e.g.: # MULTI or