@@ -23,6 +23,10 @@ Features
23234. Tab completion for commands that take a virtual environment as
2424 argument.
2525
26+ 5. User-configurable hooks for all operations.
27+
28+ 6. Plugin system for more creating sharable extensions.
29+
2630Rich Leland has created a short `screencast
2731<http://mathematism.com/2009/jul/30/presentation-pip-and-virtualenv/> `__
2832showing off the features of virtualenvwrapper.
@@ -34,20 +38,31 @@ Quick Setup
34381. Create a directory to hold all of the virtual environments. The default is
3539 ``$HOME/.virtualenvs ``.
3640
37- 2. Add two lines to your .bashrc to set the location where the virtual environments should
38- live and the location of the script installed with this package::
41+ 2. Add two lines to your shell startup file (``.bashrc ``,
42+ ``.profile ``, etc.) to set the location where the virtual
43+ environments should live and the location of the script installed
44+ with this package::
3945
4046 export WORKON_HOME=$HOME/.virtualenvs
41- source /usr/local/bin/virtualenvwrapper_bashrc
47+ source /usr/local/bin/virtualenvwrapper.sh
4248
43- 3. Run : ``source ~/.bashrc``
49+ 3. Reload the startup file (e.g., run : ``source ~/.bashrc ``).
44504. Run: ``workon ``
45515. A list of environments, empty, is printed.
46526. Run: ``mkvirtualenv temp ``
47537. A new environment, ``temp `` is created and activated.
48548. Run: ``workon ``
49559. This time, the ``temp `` environment is included.
5056
57+ Upgrading from 1.x
58+ ==================
59+
60+ The shell script containing the wrapper functions has been renamed in
61+ the 2.x series to reflect the fact that shells other than bash are
62+ supported. In your startup file, change ``source
63+ /usr/local/bin/virtualenvwrapper_bashrc `` to ``source
64+ /usr/local/bin/virtualenvwrapper.sh ``.
65+
5166=======
5267License
5368=======
0 commit comments