/ Published in: Python
URL: http://pypi.python.org/pypi/virtualenv
create isolated python environments. good to test different versions of required libraries for some application without messing with the default environment used for all other python apps.
Expand |
Embed | Plain Text
Install with: easy_install virtualenv To create and activate one virtual environment with the name "myvirtenv" use: virtualenv myvirtenv cd myvirtenv source bin/active To leave this environment use: deactivate
You need to login to post a comment.
