forked from thisismedium/virtualenv-commands
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
38 lines (28 loc) · 1.44 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Virtualenv Commands
-------------------
Virtualenv is a very useful tool that can create isolated Python
environments. This package provides an extended API and additional
commands for inspecting and manipulating virtual environments.
These utilities are provided:
ve -- a wrapper command used to execute ve-* commands
ve-init -- create and environment by invoking virtualenv
ve-extend -- chain virtualenvs together
ve-clone -- create a new virtualenv by copying an existing one
The ``ve`` command will execute any ``ve-*`` program found in the
current execution path as a subcommand (like git). For example,
``ve-init foo`` and ``ve init foo`` run the same program. This
paradigm is extensible and enforces consistent semantics. Additional,
host-specific commands to be easily written by anyone.
Another project called virtualenvwrapper also provides additional
commands for interacting with virtual environments by creating shell
subroutines. In contrast, this project is a python-centric command
framework.
More Information
----------------
* Github: http://github.com/thisismedium/virtualenv-commands/tree/master
* Project Page: http://thisismedium.com/labs/virtualenv-commands/
* Extending Virtualenv: http://thisismedium.com/tech/extending-virtualenv/
Related projects
----------------
* virtualenv: http://pypi.python.org/pypi/virtualenv
* virtualenvwrapper: http://www.doughellmann.com/projects/virtualenvwrapper/