summaryrefslogtreecommitdiff
path: root/docs/quick_tour.rst
diff options
context:
space:
mode:
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|\ "