summaryrefslogtreecommitdiff
path: root/docs/quick_tour.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-12 03:00:56 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-12 03:00:56 -0700
commit278afff7a9bbb42d96ac2199689c3141b9463b9c (patch)
tree2579157b840714e00202a1c7bb730d6849e4d7b6 /docs/quick_tour.rst
parentf4013e4ed87d1ebec94756e07220b7ee273727b4 (diff)
parentb485166239091c620c96ca71369c69f6fa7a8be7 (diff)
downloadpyramid-278afff7a9bbb42d96ac2199689c3141b9463b9c.tar.gz
pyramid-278afff7a9bbb42d96ac2199689c3141b9463b9c.tar.bz2
pyramid-278afff7a9bbb42d96ac2199689c3141b9463b9c.zip
Merge pull request #2479 from stevepiercy/docs/easy-install-to-pip.2104
Docs/easy install to pip.2104
Diffstat (limited to 'docs/quick_tour.rst')
-rw-r--r--docs/quick_tour.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst
index f1cec97e9..e381a9232 100644
--- a/docs/quick_tour.rst
+++ b/docs/quick_tour.rst
@@ -25,7 +25,7 @@ As an example, for Python 3.5+ on Linux:
.. parsed-literal::
- $ pyvenv env
+ $ python3 -m venv env
$ env/bin/pip install pyramid
# or for a specific released version
$ env/bin/pip install "pyramid==\ |release|\ "
@@ -34,7 +34,7 @@ For Windows:
.. parsed-literal::
- c:\\> c:\\Python35\\python -m venv env
+ c:\\> c:\\Python35\\python3 -m venv env
c:\\> env\\Scripts\\pip install pyramid
# or for a specific released version
c:\\> env\\Scripts\\pip install "pyramid==\ |release|\ "