diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-04-12 13:53:05 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-04-12 13:53:05 -0700 |
| commit | 83d7d92ca5c44b9e63a537fb1d88834a945e25f3 (patch) | |
| tree | 5b328cd2f2578fd08b205baeb4232a65a8bbc620 /docs | |
| parent | a7036807edc54987f4c42eeb459d950760216b6f (diff) | |
| download | pyramid-83d7d92ca5c44b9e63a537fb1d88834a945e25f3.tar.gz pyramid-83d7d92ca5c44b9e63a537fb1d88834a945e25f3.tar.bz2 pyramid-83d7d92ca5c44b9e63a537fb1d88834a945e25f3.zip | |
- add mention of Windows and Python 3.3+ for virtual environments
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/glossary.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst index 4c17c0f0b..655301a5c 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -1107,8 +1107,9 @@ Glossary The Python Packaging Authority formerly recommended using this command for `creating virtual environments on Python 3.4 and 3.5 <https://packaging.python.org/en/latest/installing/#creating-virtual-environments>`_, - but it is deprecated in 3.6 in favor of ``python3 -m venv`` which is - backward compatible. + but it is deprecated in 3.6 in favor of ``python3 -m venv`` on UNIX or + ``python -m venv`` on Windows, which is backward compatible on Python + 3.3 and greater. virtual environment An isolated Python environment that allows packages to be installed for @@ -1116,7 +1117,7 @@ Glossary venv The `Python Packaging Authority's <https://www.pypa.io/>`_ recommended - tool for creating virtual environments. + tool for creating virtual environments on Python 3.3 and greater. Note: whenever you encounter commands prefixed with ``$VENV`` (Unix) or ``%VENV`` (Windows), know that that is the environment variable whose |
