diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-08-19 00:36:46 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-08-19 00:36:46 -0700 |
| commit | 5af30057aa5528eaa277603ee717b7111c147a51 (patch) | |
| tree | 72af1e5a928cd8c99f86d109e6e51eff58253e79 /docs/quick_tutorial | |
| parent | 72eb0abbdb6b2c56c7b731edb7006416316b9790 (diff) | |
| download | pyramid-5af30057aa5528eaa277603ee717b7111c147a51.tar.gz pyramid-5af30057aa5528eaa277603ee717b7111c147a51.tar.bz2 pyramid-5af30057aa5528eaa277603ee717b7111c147a51.zip | |
Standardize Unix capitalization
Diffstat (limited to 'docs/quick_tutorial')
| -rw-r--r-- | docs/quick_tutorial/requirements.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/quick_tutorial/requirements.rst b/docs/quick_tutorial/requirements.rst index 0da56ca0b..746af8207 100644 --- a/docs/quick_tutorial/requirements.rst +++ b/docs/quick_tutorial/requirements.rst @@ -33,7 +33,7 @@ This *Quick Tutorial* is based on: projects* (a directory with packaging information and *Python packages* of working code.) -* **Unix commands**. Commands in this tutorial use UNIX syntax and paths. +* **Unix commands**. Commands in this tutorial use Unix syntax and paths. Windows users should adjust commands accordingly. .. note:: @@ -89,11 +89,11 @@ will reside as we proceed through the tutorial: │ └── app.py └── setup.py -For Linux, the commands to do so are as follows: +For macOS and Linux, the commands to do so are as follows: .. code-block:: bash - # Mac and Linux + # macOS and Linux cd ~ mkdir -p projects/quick_tutorial cd projects/quick_tutorial @@ -129,7 +129,7 @@ environment`. We set an environment variable to save typing later. .. code-block:: bash - # Mac and Linux + # macOS and Linux export VENV=~/projects/quick_tutorial/env .. code-block:: doscon @@ -150,7 +150,7 @@ environment variable. .. code-block:: bash - # Mac and Linux + # macOS and Linux python3 -m venv $VENV .. code-block:: doscon @@ -171,7 +171,7 @@ time of its release. .. code-block:: bash - # Mac and Linux + # macOS and Linux $VENV/bin/pip install --upgrade pip setuptools .. code-block:: doscon @@ -193,7 +193,7 @@ part is pretty easy. We'll also install a WSGI server, Waitress. .. parsed-literal:: - # Mac and Linux + # macOS and Linux $VENV/bin/pip install "pyramid==\ |release|\ " waitress # Windows |
