diff options
| author | Matthew Iversen <teh.ivo@gmail.com> | 2014-06-15 02:04:26 +1000 |
|---|---|---|
| committer | Matthew Iversen <teh.ivo@gmail.com> | 2014-06-15 02:04:26 +1000 |
| commit | 2b61e9e37849ff7855c4613f61498e073e452ae4 (patch) | |
| tree | 71873bdc74d8dc72a77c628c87a333ea3a54dbf6 /docs | |
| parent | 94581e7f3665efb0852acb824616112f38e1d850 (diff) | |
| download | virtualenv-2b61e9e37849ff7855c4613f61498e073e452ae4.tar.gz | |
Incorporate 6355f9b8 by @pfmoore
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/userguide.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/userguide.rst b/docs/userguide.rst index 1a13353..63d13af 100644 --- a/docs/userguide.rst +++ b/docs/userguide.rst @@ -40,10 +40,13 @@ In a newly created virtualenv there will also be a :command:`activate` shell script. For Windows systems, activation scripts are provided for the Command Prompt and Powershell. -On Posix systems, this also resides in :file:`/ENV/bin/`, so you can run:: +On Posix systems, this resides in :file:`/ENV/bin/`, so you can run:: $ source bin/activate +For some shells (e.g. the original Bourne Shell) you may need to use the +:command:`.` command, when :command:`source` does not exist. + This will change your ``$PATH`` so its first entry is the virtualenv's ``bin/`` directory. (You have to use ``source`` because it changes your shell environment in-place.) This is all it does; it's purely a |
