summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-10 04:43:00 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-10 04:43:00 -0700
commit4a4b9fa4e7cc134b097fe7ef95fd64583bcfa62d (patch)
tree2417d76af275d1473282b106f04af2c1a0ac82a5
parente9953d9ff4869e9a4d0cb84224b9b765875fe698 (diff)
parent469b5e7276555f5347fdc5dfde938d738920583f (diff)
downloadpyramid-4a4b9fa4e7cc134b097fe7ef95fd64583bcfa62d.tar.gz
pyramid-4a4b9fa4e7cc134b097fe7ef95fd64583bcfa62d.tar.bz2
pyramid-4a4b9fa4e7cc134b097fe7ef95fd64583bcfa62d.zip
Merge pull request #2465 from stevepiercy/docs/easy-install-to-pip.2104
update extending.rst to use pip
-rw-r--r--docs/narr/extending.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/extending.rst b/docs/narr/extending.rst
index d28eb341d..9dc042024 100644
--- a/docs/narr/extending.rst
+++ b/docs/narr/extending.rst
@@ -197,8 +197,8 @@ this:
elements, such as templates and static assets as necessary.
- Install the new package into the same Python environment as the original
- application (e.g., ``$VENV/bin/python setup.py develop`` or
- ``$VENV/bin/python setup.py install``).
+ application (e.g., ``$VENV/bin/pip install -e .`` or ``$VENV/bin/pip install
+ .``).
- Change the ``main`` function in the new package's ``__init__.py`` to include
the original :app:`Pyramid` application's configuration functions via