summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/requirements.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2018-07-02 13:52:55 -0400
committerChris McDonough <chrism@plope.com>2018-07-02 13:52:55 -0400
commit0c8ca237d1bb1ff0f6e3776a3c868edb040fa791 (patch)
tree57498768d48ce74a753dec8f359b5646acf30655 /docs/quick_tutorial/requirements.rst
parent50efc321cb14d76433216783c11b9eb99a7d44c8 (diff)
parent57a896f103c7378fb285f6594228578a5324d672 (diff)
downloadpyramid-0c8ca237d1bb1ff0f6e3776a3c868edb040fa791.tar.gz
pyramid-0c8ca237d1bb1ff0f6e3776a3c868edb040fa791.tar.bz2
pyramid-0c8ca237d1bb1ff0f6e3776a3c868edb040fa791.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/quick_tutorial/requirements.rst')
-rw-r--r--docs/quick_tutorial/requirements.rst32
1 files changed, 9 insertions, 23 deletions
diff --git a/docs/quick_tutorial/requirements.rst b/docs/quick_tutorial/requirements.rst
index a65cfe6d2..29f263176 100644
--- a/docs/quick_tutorial/requirements.rst
+++ b/docs/quick_tutorial/requirements.rst
@@ -79,15 +79,15 @@ will reside as we proceed through the tutorial:
.. code-block:: text
- `── ~
- `── projects
- `── quick_tutorial
- │── env
- `── step_one
- │── intro
- │ │── __init__.py
- │ `── app.py
- `── setup.py
+ ~
+ └── projects
+ └── quick_tutorial
+ ├── env
+ └── step_one
+ ├── intro
+ │ ├── __init__.py
+ │ └── app.py
+ └── setup.py
For Linux, the commands to do so are as follows:
@@ -202,17 +202,3 @@ part is pretty easy. We'll also install a WSGI server, Waitress.
Our Python virtual environment now has the Pyramid software available
as well as the ``waitress`` package.
-You can optionally install some of the extra Python packages used in this
-tutorial.
-
-.. code-block:: bash
-
- # Mac and Linux
- $ $VENV/bin/pip install webtest pytest pytest-cov deform sqlalchemy \
- pyramid_chameleon pyramid_debugtoolbar pyramid_jinja2 waitress \
- pyramid_tm zope.sqlalchemy
-
-.. code-block:: doscon
-
- # Windows
- c:\> %VENV%\Scripts\pip install webtest pytest pytest-cov deform sqlalchemy pyramid_chameleon pyramid_debugtoolbar pyramid_jinja2 waitress pyramid_tm zope.sqlalchemy