diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-11-14 02:12:56 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-14 02:12:56 -0800 |
| commit | 101804e5e603e45ceb856701b2af8203e1af0b08 (patch) | |
| tree | 2c99f8d6a98a1f09462b26186ff4fb6348528135 /docs | |
| parent | 568ce319ef097f1e909398f9a5ec890e4de91601 (diff) | |
| parent | 46bb00f493300f251cacb27d3ab6a221fbcb4473 (diff) | |
| download | pyramid-101804e5e603e45ceb856701b2af8203e1af0b08.tar.gz pyramid-101804e5e603e45ceb856701b2af8203e1af0b08.tar.bz2 pyramid-101804e5e603e45ceb856701b2af8203e1af0b08.zip | |
Merge pull request #2815 from stevepiercy/master
should be loaded from the virtualenv
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/quick_tour.rst | 4 |
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: |
