summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/installation.rst
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2016-02-21 15:51:55 -0700
committerBert JW Regeer <bertjw@regeer.org>2016-02-21 15:54:31 -0700
commit93fa23ae1463e78230cc3af8ecb89a6813b5556b (patch)
treec1cb901e9059e6fa73ace77c2a58c8e8dbbe10e5 /docs/tutorials/wiki2/installation.rst
parent754e86807d3a26aae0862bbc7991f28c917f9cf3 (diff)
downloadpyramid-93fa23ae1463e78230cc3af8ecb89a6813b5556b.tar.gz
pyramid-93fa23ae1463e78230cc3af8ecb89a6813b5556b.tar.bz2
pyramid-93fa23ae1463e78230cc3af8ecb89a6813b5556b.zip
Remove references to pip
Diffstat (limited to 'docs/tutorials/wiki2/installation.rst')
-rw-r--r--docs/tutorials/wiki2/installation.rst26
1 files changed, 3 insertions, 23 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst
index 1dd71cb76..eb6cf50e0 100644
--- a/docs/tutorials/wiki2/installation.rst
+++ b/docs/tutorials/wiki2/installation.rst
@@ -9,9 +9,9 @@ This tutorial assumes that you have already followed the steps in
:ref:`installing_chapter`, except **do not create a virtualenv or install
Pyramid**. Thereby you will satisfy the following requirements.
-* A Python interpreter is installed on your operating system.
-* :term:`virtualenv` is installed.
-* :term:`pip` will be installed when we create a virtual environment.
+* Python interpreter is installed on your operating system
+* :term:`setuptools` or :term:`distribute` is installed
+* :term:`virtualenv` is installed
Create directory to contain the project
---------------------------------------
@@ -70,14 +70,6 @@ Python 3.5:
c:\> c:\Python35\Scripts\virtualenv %VENV%
-.. Upgrade pip in the virtual environment
- --------------------------------------
-
-.. .. code-block:: bash
-
-.. $ $VENV/bin/pip install --upgrade pip
-
-
Install Pyramid into the virtual Python environment
---------------------------------------------------
@@ -88,8 +80,6 @@ On UNIX
$ $VENV/bin/easy_install pyramid
-.. $ $VENV/bin/pip install pyramid
-
On Windows
^^^^^^^^^^
@@ -97,8 +87,6 @@ On Windows
c:\> %VENV%\Scripts\easy_install pyramid
-.. c:\> %VENV%\Scripts\pip install pyramid
-
Install SQLite3 and its development packages
--------------------------------------------
@@ -197,8 +185,6 @@ On UNIX
$ cd tutorial
$ $VENV/bin/python setup.py develop
-.. $ $VENV/bin/pip install -e .
-
On Windows
----------
@@ -207,8 +193,6 @@ On Windows
c:\pyramidtut> cd tutorial
c:\pyramidtut\tutorial> %VENV%\Scripts\python setup.py develop
-.. c:\pyramidtut\tutorial> %VENV%\Scripts\pip install -e .
-
The console will show ``setup.py`` checking for packages and installing
missing packages. Success executing this command will show a line like
the following::
@@ -230,8 +214,6 @@ On UNIX
$ $VENV/bin/python setup.py test -q
-.. py.test? See https://github.com/Pylons/pyramid/issues/2104#issuecomment-155852046
-
On Windows
----------
@@ -239,8 +221,6 @@ On Windows
c:\pyramidtut\tutorial> %VENV%\Scripts\python setup.py test -q
-.. py.test? See https://github.com/Pylons/pyramid/issues/2104#issuecomment-155852046
-
For a successful test run, you should see output that ends like this::
.