How can I activate a virtualenv in Linux?

Here is my workflow after creating a folder and cd‘ing into it:

virtualenv venv --distribute

Output:

New python executable in venv/bin/python
Installing distribute.........done.
Installing pip................done.

And

source venv/bin/activate
python

Leave a Comment