summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/pyramid_setup.rst
diff options
context:
space:
mode:
authorPaul Everitt <paul@agendaless.com>2013-09-13 16:52:14 -0400
committerPaul Everitt <paul@agendaless.com>2013-09-13 16:52:14 -0400
commitb1b92284f496800a4dfd2cea72cb9be07ba8661c (patch)
tree9dfa72427fd6aa0a3a7aaba72be4a4e49380ee26 /docs/quick_tutorial/pyramid_setup.rst
parent1d04f8f0b483b8d595f5ada24ae5108affe80160 (diff)
downloadpyramid-b1b92284f496800a4dfd2cea72cb9be07ba8661c.tar.gz
pyramid-b1b92284f496800a4dfd2cea72cb9be07ba8661c.tar.bz2
pyramid-b1b92284f496800a4dfd2cea72cb9be07ba8661c.zip
First cut at import of quick tutorial.
Diffstat (limited to 'docs/quick_tutorial/pyramid_setup.rst')
-rw-r--r--docs/quick_tutorial/pyramid_setup.rst27
1 files changed, 27 insertions, 0 deletions
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