From charlesreid1

No edit summary
No edit summary
Line 22: Line 22:
Install stuff into your virtual python:
Install stuff into your virtual python:


</pre>
<pre>
$ bin/
$ bin/pip install itertools
</pre>
</pre>

Revision as of 20:02, 20 November 2013


Basic Usage

Determine where you want your virtual python to live. I'll use the directory ~/vp as an example.

Create your virtual python:

$ virtualenv vp
$ cd vp

Activate your virtual python:

$ source bin/activate

Install stuff into your virtual python:

$ bin/pip install itertools