Wow, you've been using virtualenv in the most difficult way possible bin/activate is a bash script that sets up you path and all other environment variables you need to use it. running "souce bin/ activate" (or ". bin/activate") causes it to effect the current shell. Just type deactivate when you're ready to undo your venv.
On Apr 14, 2008, at 12:38 PM, jason kirtland wrote: > > Lukasz Szybalski wrote: >> On Mon, Apr 14, 2008 at 11:30 AM, jason kirtland >> <[EMAIL PROTECTED]> wrote: >>> Lukasz Szybalski wrote: >>>> Hello, >>>> Below you can find instructions on how to setup sqlalchemy in >>>> virtual >>>> environment. >>>> >>>> http://lucasmanual.com/mywiki/TurboGears#head-36fb4094da01b8c28e8bdca803c0f05774eb13b8 >>> >>> Installing SQLAlchemy in a virtualenv is the same as for any >>> package on >>> listed on PYPI: >>> >> >> What does this line do? >>> $ source myenv/bin/activate > > http://pypi.python.org/pypi/virtualenv#activate-script > >> Which version of sqlalchemy does it install? current stable? trunk? >> or? >>> $ easy_install SQLAlchemy > > The latest on pypi. You can also do > > $ easy_install SQLAlchemy==dev # for svn trunk > $ easy_install SQLAlchemy==0.4.5 # whatever version > > http://peak.telecommunity.com/DevCenter/EasyInstall > > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
