diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-04-12 02:47:57 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-04-12 02:47:57 -0700 |
| commit | d603697517d56a1e2f2a5707ebba922db24f5c71 (patch) | |
| tree | b9f1db047a31a4b0d97e773bb2474977c8671ab1 /docs/narr | |
| parent | 74cf44544cb2c6dbd4a0ae7b01881ab450194f53 (diff) | |
| download | pyramid-d603697517d56a1e2f2a5707ebba922db24f5c71.tar.gz pyramid-d603697517d56a1e2f2a5707ebba922db24f5c71.tar.bz2 pyramid-d603697517d56a1e2f2a5707ebba922db24f5c71.zip | |
- replace `pyvenv` with `python3 -m venv`
Diffstat (limited to 'docs/narr')
| -rw-r--r-- | docs/narr/install.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/install.rst b/docs/narr/install.rst index febdc87cc..548d040f1 100644 --- a/docs/narr/install.rst +++ b/docs/narr/install.rst @@ -126,8 +126,8 @@ also need to download and install the Python for Windows extensions. Requirements for Installing Packages ------------------------------------ -Use :term:`pip` for installing packages and :term:`pyvenv` for creating a -virtual environment. A virtual environment is a semi-isolated Python +Use :term:`pip` for installing packages and ``python3 -m venv env`` for +creating a virtual environment. A virtual environment is a semi-isolated Python environment that allows packages to be installed for use by a particular application, rather than being installed system wide. @@ -155,7 +155,7 @@ After installing Python as described previously in :ref:`for-mac-os-x-users` or .. code-block:: bash $ export VENV=~/env - $ pyvenv $VENV + $ python3 -m venv $VENV You can either follow the use of the environment variable ``$VENV``, or replace it with the root directory of the virtual environment. If you choose @@ -190,7 +190,7 @@ After installing Python as described previously in c:\> set VENV=c:\env # replace "x" with your minor version of Python 3 - c:\> c:\Python3x\Scripts\pyvenv %VENV% + c:\> c:\Python3x\Scripts\python3 -m venv %VENV% You can either follow the use of the environment variable ``%VENV%``, or replace it with the root directory of the virtual environment. If you choose |
