Peter,

PD wrote:
> Hi,
> please can someone help me with this (maybe simple solution): Is it
> possible to install two (or more) versions of SA in one Python
> environment and import specific version? E.g. when migrating from old
> version.
>   
If you installed using easy_setup then you can do:

    import pkg_resources
    pkg_resources.require("sqlalchemy") # get latest version

or:
    pkg_resources.require("sqlalchemy==0.4.3") # use a specific version

Werner



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" 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/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to