summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOladipo Odumosu <dodumosu@timbaobjects.com>2016-11-14 00:47:21 -0800
committerSteve Piercy <web@stevepiercy.com>2016-11-14 02:06:15 -0800
commit46bb00f493300f251cacb27d3ab6a221fbcb4473 (patch)
tree2c99f8d6a98a1f09462b26186ff4fb6348528135 /docs
parent568ce319ef097f1e909398f9a5ec890e4de91601 (diff)
downloadpyramid-46bb00f493300f251cacb27d3ab6a221fbcb4473.tar.gz
pyramid-46bb00f493300f251cacb27d3ab6a221fbcb4473.tar.bz2
pyramid-46bb00f493300f251cacb27d3ab6a221fbcb4473.zip
should be loaded from the virtualenv
(cherry picked from commit 2552d88)
Diffstat (limited to 'docs')
-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 39b4cafb3..451830687 100644
--- a/docs/quick_tour.rst
+++ b/docs/quick_tour.rst
@@ -504,7 +504,7 @@ Pyramid's ``pcreate`` command can list the available scaffolds:
.. code-block:: bash
- $ pcreate --list
+ $ $VENV/bin/pcreate --list
Available scaffolds:
alchemy: Pyramid project using SQLAlchemy, SQLite, URL dispatch, and Jinja2
pyramid_jinja2_starter: Pyramid Jinja2 starter project
@@ -517,7 +517,7 @@ that scaffold to make our project:
.. code-block:: bash
- $ pcreate --scaffold pyramid_jinja2_starter hello_world
+ $ $VENV/bin/pcreate --scaffold pyramid_jinja2_starter hello_world
We next use the normal Python command to set up our package for development: