Virtualenv: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| Line 25: | Line 25: | ||
$ bin/pip install itertools | $ bin/pip install itertools | ||
</pre> | </pre> | ||
=Links= | |||
Notes on how to use; http://docs.python-guide.org/en/latest/dev/virtualenvs/ | |||
Revision as of 02:55, 27 August 2016
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
Links
Notes on how to use; http://docs.python-guide.org/en/latest/dev/virtualenvs/