From b1b92284f496800a4dfd2cea72cb9be07ba8661c Mon Sep 17 00:00:00 2001 From: Paul Everitt Date: Fri, 13 Sep 2013 16:52:14 -0400 Subject: First cut at import of quick tutorial. --- docs/quick_tutorial/pyramid_setup.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docs/quick_tutorial/pyramid_setup.rst (limited to 'docs/quick_tutorial/pyramid_setup.rst') diff --git a/docs/quick_tutorial/pyramid_setup.rst b/docs/quick_tutorial/pyramid_setup.rst new file mode 100644 index 000000000..5efcc7dc7 --- /dev/null +++ b/docs/quick_tutorial/pyramid_setup.rst @@ -0,0 +1,27 @@ +============= +Pyramid Setup +============= + +Installing Pyramid is easy and normal from a Python packaging +perspective. Again, *make sure* you have your virtual environment first +in your path using ``source bin/activate``. + +.. code-block:: bash + + (env27)$ easy_install pyramid + ....chuggalugga... + (env27ß)$ which pserve + +You now have Pyramid installed. The second command confirms this by +looking for the Pyramid ``pserve`` command that should be on your +``$PATH`` in the ``bin`` of your virtual environment. + +Installing Everything +===================== + +Later parts of the tutorial install more packages. Most likely, +you'd like to go ahead and get much of it now: + +.. code-block:: bash + + (env27)$ easy_install pyramid nose webtest deform sqlalchemy \ No newline at end of file -- cgit v1.2.3 From 4042c772c8043ac96a22db439a736fec9ea2aafa Mon Sep 17 00:00:00 2001 From: Paul Everitt Date: Fri, 13 Sep 2013 17:09:35 -0400 Subject: All the references re-wired. --- docs/quick_tutorial/pyramid_setup.rst | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) (limited to 'docs/quick_tutorial/pyramid_setup.rst') diff --git a/docs/quick_tutorial/pyramid_setup.rst b/docs/quick_tutorial/pyramid_setup.rst index 5efcc7dc7..187a25adf 100644 --- a/docs/quick_tutorial/pyramid_setup.rst +++ b/docs/quick_tutorial/pyramid_setup.rst @@ -2,26 +2,14 @@ Pyramid Setup ============= -Installing Pyramid is easy and normal from a Python packaging -perspective. Again, *make sure* you have your virtual environment first -in your path using ``source bin/activate``. +We now have a standard starting point for Python. Getting Pyramid +installed is easy: .. code-block:: bash - (env27)$ easy_install pyramid - ....chuggalugga... - (env27ß)$ which pserve + $ easy_install pyramid -You now have Pyramid installed. The second command confirms this by -looking for the Pyramid ``pserve`` command that should be on your -``$PATH`` in the ``bin`` of your virtual environment. +Our virtual environment now has the Pyramid software available to its +Python. -Installing Everything -===================== - -Later parts of the tutorial install more packages. Most likely, -you'd like to go ahead and get much of it now: - -.. code-block:: bash - - (env27)$ easy_install pyramid nose webtest deform sqlalchemy \ No newline at end of file +.. seealso:: See Also: :ref:`installing_unix` -- cgit v1.2.3