diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-03-31 02:29:40 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-03-31 02:29:40 -0700 |
| commit | 7725b8ca96ae63f0767145aa192e3d5a67da4a1b (patch) | |
| tree | 2fe87facdf2e3468a9b24086a8b8eaf59f1bc88e | |
| parent | e4995d86ce6570dcfea440cafc92aecc40c421ad (diff) | |
| download | pyramid-7725b8ca96ae63f0767145aa192e3d5a67da4a1b.tar.gz pyramid-7725b8ca96ae63f0767145aa192e3d5a67da4a1b.tar.bz2 pyramid-7725b8ca96ae63f0767145aa192e3d5a67da4a1b.zip | |
- change $VENV to just env.
| -rw-r--r-- | docs/quick_tour.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst index 067395218..32f049d6a 100644 --- a/docs/quick_tour.rst +++ b/docs/quick_tour.rst @@ -497,7 +497,7 @@ We next use the normal Python command to set up our package for development: .. code-block:: bash $ cd hello_world - $ $VENV/bin/pip install -e . + $ env/bin/pip install -e . We are moving in the direction of a full-featured Pyramid project, with a proper setup for Python standards (packaging) and Pyramid configuration. This @@ -612,7 +612,7 @@ It was installed when you previously ran: .. code-block:: bash - $ $VENV/bin/pip install -e . + $ env/bin/pip install -e . The ``pyramid_debugtoolbar`` package is a Pyramid add-on, which means we need to include its configuration into our web application. The ``pyramid_jinja2`` @@ -665,7 +665,7 @@ following: }, We changed ``setup.py`` which means we need to rerun -``$VENV/bin/pip install -e .``. We can now run all our tests: +``env/bin/pip install -e .``. We can now run all our tests: .. code-block:: bash @@ -824,7 +824,7 @@ Pyramid and SQLAlchemy are great friends. That friendship includes a scaffold! $ pcreate --scaffold alchemy sqla_demo $ cd sqla_demo - $ $VENV/bin/pip install -e . + $ env/bin/pip install -e . We now have a working sample SQLAlchemy application with all dependencies installed. The sample project provides a console script to initialize a SQLite |
