summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/pyramid_setup.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tutorial/pyramid_setup.rst')
-rw-r--r--docs/quick_tutorial/pyramid_setup.rst24
1 files changed, 6 insertions, 18 deletions
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`