Steve Piercy
2016-04-24 e28a475096cf6c02f267d4be08e2cb4359f1156a
Merge pull request #2527 from stevepiercy/1.7-branch

Use parsed-literal for installing versions of Pyramid. This should fu…
3 files modified
23 ■■■■ changed files
docs/tutorials/modwsgi/index.rst 6 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki/installation.rst 9 ●●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/installation.rst 8 ●●●● patch | view | raw | blame | history
docs/tutorials/modwsgi/index.rst
@@ -44,11 +44,11 @@
#.  Install :app:`Pyramid` into the newly created virtual environment:
    .. code-block:: text
    .. parsed-literal::
       $ cd ~/modwsgi/env
       $ $VENV/bin/pip install pyramid
       $ $VENV/bin/pip install "pyramid==\ |release|\ "
#.  Create and install your :app:`Pyramid` application.  For the purposes of
    this tutorial, we'll just be using the ``pyramid_starter`` application as
    a baseline application.  Substitute your existing :app:`Pyramid`
docs/tutorials/wiki/installation.rst
@@ -97,16 +97,17 @@
On UNIX
^^^^^^^
.. code-block:: bash
.. parsed-literal::
   $ $VENV/bin/pip install pyramid
   $ $VENV/bin/pip install "pyramid==\ |release|\ "
On Windows
^^^^^^^^^^
.. code-block:: doscon
.. parsed-literal::
   c:\> %VENV%\Scripts\pip install pyramid
   c:\\> %VENV%\\Scripts\\pip install "pyramid==\ |release|\ "
Change directory to your virtual Python environment
---------------------------------------------------
docs/tutorials/wiki2/installation.rst
@@ -97,16 +97,16 @@
On UNIX
^^^^^^^
.. code-block:: bash
.. parsed-literal::
   $ $VENV/bin/pip install pyramid
   $ $VENV/bin/pip install "pyramid==\ |release|\ "
On Windows
^^^^^^^^^^
.. code-block:: doscon
.. parsed-literal::
   c:\> %VENV%\Scripts\pip install pyramid
   c:\\> %VENV%\\Scripts\\pip install "pyramid==\ |release|\ "
Install SQLite3 and its development packages