summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/distributing.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-23 03:25:44 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-23 03:25:44 -0800
commit5d9fd5fb7ca74ac33f2809c7e2949470d318b945 (patch)
treec86d5add2b0456f5e8c10e74b6470b477948d5e2 /docs/tutorials/wiki2/distributing.rst
parente7b12f6111926cd3073cf1d6365c7a96ef3235b9 (diff)
downloadpyramid-5d9fd5fb7ca74ac33f2809c7e2949470d318b945.tar.gz
pyramid-5d9fd5fb7ca74ac33f2809c7e2949470d318b945.tar.bz2
pyramid-5d9fd5fb7ca74ac33f2809c7e2949470d318b945.zip
make distributing.rst's consistent, use pip install
Diffstat (limited to 'docs/tutorials/wiki2/distributing.rst')
-rw-r--r--docs/tutorials/wiki2/distributing.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/tutorials/wiki2/distributing.rst b/docs/tutorials/wiki2/distributing.rst
index f38a733f4..f4fdfcbbe 100644
--- a/docs/tutorials/wiki2/distributing.rst
+++ b/docs/tutorials/wiki2/distributing.rst
@@ -19,14 +19,14 @@ On Windows:
.. code-block:: doscon
- c:\pyramidtut> %VENV%\Scripts\python setup.py sdist
+ c:\tutorial> %VENV%\Scripts\python setup.py sdist
The output of such a command will be something like:
.. code-block:: text
running sdist
- # .. more output ..
+ # more output
creating dist
Creating tar archive
removing 'tutorial-0.0' (and everything under it)
@@ -34,7 +34,7 @@ The output of such a command will be something like:
Note that this command creates a tarball in the "dist" subdirectory named
``tutorial-0.0.tar.gz``. You can send this file to your friends to show them
your cool new application. They should be able to install it by pointing the
-``easy_install`` command directly at it. Or you can upload it to `PyPI
+``pip install .`` command directly at it. Or you can upload it to `PyPI
<https://pypi.python.org/pypi>`_ and share it with the rest of the world, where
-it can be downloaded via ``easy_install`` remotely like any other package
-people download from PyPI.
+it can be downloaded via ``pip install`` remotely like any other package people
+download from PyPI.