Skip to content

Commit

Permalink
Use parsed-literal for installing versions of Pyramid. This should fu…
Browse files Browse the repository at this point in the history
…ture proof docs.
  • Loading branch information
stevepiercy committed Apr 24, 2016
1 parent 58b8798 commit ac4d2ca
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions docs/tutorials/modwsgi/index.rst
Expand Up @@ -44,11 +44,11 @@ specific path information for commands and files.
#. 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`
Expand Down
9 changes: 5 additions & 4 deletions docs/tutorials/wiki/installation.rst
Expand Up @@ -97,16 +97,17 @@ Install Pyramid into the virtual Python environment
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==\ |release|\ "
c:\> %VENV%\Scripts\pip install pyramid
Change directory to your virtual Python environment
---------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/wiki2/installation.rst
Expand Up @@ -97,16 +97,16 @@ Install Pyramid into the virtual Python environment
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
Expand Down

0 comments on commit ac4d2ca

Please sign in to comment.