summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2017-01-15 17:53:26 -0600
committerGitHub <noreply@github.com>2017-01-15 17:53:26 -0600
commit17ee4dc30b9576b516ee3a5fd9db0c5f21fe9126 (patch)
tree8eea9208aae9032b0698b5f3ccb31499e308cf99 /docs/quick_tutorial
parent07bfdb4fdbbccd5fb05eaea753198f26bd7546e1 (diff)
parent7ed8e2e83a7b71d171989600c6c04dc50c1be34d (diff)
downloadpyramid-17ee4dc30b9576b516ee3a5fd9db0c5f21fe9126.tar.gz
pyramid-17ee4dc30b9576b516ee3a5fd9db0c5f21fe9126.tar.bz2
pyramid-17ee4dc30b9576b516ee3a5fd9db0c5f21fe9126.zip
Merge pull request #2900 from stevepiercy/windows-install
Windows documentation updates
Diffstat (limited to 'docs/quick_tutorial')
-rw-r--r--docs/quick_tutorial/requirements.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/requirements.rst b/docs/quick_tutorial/requirements.rst
index f95dac488..70e68514b 100644
--- a/docs/quick_tutorial/requirements.rst
+++ b/docs/quick_tutorial/requirements.rst
@@ -156,7 +156,7 @@ environment variable.
.. code-block:: doscon
# Windows
- c:\> c:\Python35\python -m venv %VENV%
+ c:\> python -m venv %VENV%
.. seealso:: See also Python 3's :mod:`venv module <python:venv>` and Python
2's `virtualenv <https://virtualenv.pypa.io/en/latest/>`_ package.
@@ -214,4 +214,4 @@ tutorial.
.. code-block:: doscon
# Windows
- c:\> %VENV%\Scripts\pip install webtest deform sqlalchemy pyramid_chameleon pyramid_debugtoolbar pyramid_jinja2 waitress pyramid_tm zope.sqlalchemy
+ c:\> %VENV%\Scripts\pip install webtest pytest pytest-cov deform sqlalchemy pyramid_chameleon pyramid_debugtoolbar pyramid_jinja2 waitress pyramid_tm zope.sqlalchemy