summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/installation.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2017-01-15 15:37:44 -0800
committerSteve Piercy <web@stevepiercy.com>2017-01-15 15:37:44 -0800
commit7ed8e2e83a7b71d171989600c6c04dc50c1be34d (patch)
tree8eea9208aae9032b0698b5f3ccb31499e308cf99 /docs/tutorials/wiki/installation.rst
parent9cd5b66b9d3cd59e0aac11460077a1722b420924 (diff)
downloadpyramid-7ed8e2e83a7b71d171989600c6c04dc50c1be34d.tar.gz
pyramid-7ed8e2e83a7b71d171989600c6c04dc50c1be34d.tar.bz2
pyramid-7ed8e2e83a7b71d171989600c6c04dc50c1be34d.zip
Update Windows docs
- Installation overhauled - update project.rst to remove duplication - Windows paths never end with "\" except for a drive name, for example C:\ - use backslashes for paths - backslashes cannot be used for line continuation on Windows - update extra packages for Windows - Python now has a Windows launcher
Diffstat (limited to 'docs/tutorials/wiki/installation.rst')
-rw-r--r--docs/tutorials/wiki/installation.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/installation.rst b/docs/tutorials/wiki/installation.rst
index 6cd7fbbc2..c735bdf9d 100644
--- a/docs/tutorials/wiki/installation.rst
+++ b/docs/tutorials/wiki/installation.rst
@@ -102,7 +102,7 @@ On UNIX
On Windows
^^^^^^^^^^
-Each version of Python uses different paths, so you will need to adjust the path to the command for your Python version.
+Each version of Python uses different paths, so you might need to adjust the path to the command for your Python version. Recent versions of the Python 3 installer for Windows now install a Python launcher.
Python 2.7:
@@ -114,7 +114,7 @@ Python 3.6:
.. code-block:: doscon
- c:\tutorial> c:\Python36\Scripts\python -m venv %VENV%
+ c:\tutorial> python -m venv %VENV%
Upgrade packaging tools in the virtual environment
@@ -242,8 +242,7 @@ On Windows
.. code-block:: doscon
- c:\tutorial> %VENV%\Scripts\py.test --cov \
- --cov-report=term-missing
+ c:\tutorial> %VENV%\Scripts\py.test --cov --cov-report=term-missing
If successful, you will see output something like this: