summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-07-25 16:28:49 +0000
committerChris McDonough <chrism@agendaless.com>2008-07-25 16:28:49 +0000
commit3c9e9dbdce3c7407e69d718c2fb75f12865fe092 (patch)
tree9fc9f20330eb149f774c954e3675f0fe135a0d27 /docs
parentf6dd1a0b498be0de3e33b4a9663a601e4925d210 (diff)
downloadpyramid-3c9e9dbdce3c7407e69d718c2fb75f12865fe092.tar.gz
pyramid-3c9e9dbdce3c7407e69d718c2fb75f12865fe092.tar.bz2
pyramid-3c9e9dbdce3c7407e69d718c2fb75f12865fe092.zip
Install docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/install.rst14
-rw-r--r--docs/tutorials/lxmlgraph/step04.rst2
2 files changed, 13 insertions, 3 deletions
diff --git a/docs/narr/install.rst b/docs/narr/install.rst
index bec8217f8..59f44ff84 100644
--- a/docs/narr/install.rst
+++ b/docs/narr/install.rst
@@ -10,8 +10,18 @@ primarily under Python 2.4, so that version is recommended.
:mod:`repoze.bfg` does *not* run under any version of Python before
2.4, and does *not* run under Python 3.X.
-You may install :mod:`repoze.bfg` into your Python environment using
-the following command::
+.. note:: To succesfully install :mod:``repoze.bfg``, you will need an
+ environment capable of compiling C code. See the documentation
+ about installing, e.g. ``gcc`` for your system. Additionally, the
+ Python development libraries for your Python version will need to
+ be installed and the ``lixbml2`` and ``libxslt`` development
+ libraries will need to be installed. These requirements are often
+ satisfied by installing the ``python-devel``, ``libxml2-devel`` and
+ ``libxslt-devel`` packages into your system.
+
+After you've got the requisite dependencies installed, you may install
+:mod:`repoze.bfg` into your Python environment using the following
+command::
$ easy_install -i http://dist.repoze.org/lemonade/dev/simple repoze.bfg
diff --git a/docs/tutorials/lxmlgraph/step04.rst b/docs/tutorials/lxmlgraph/step04.rst
index 35e0b9aa9..59b6e6003 100644
--- a/docs/tutorials/lxmlgraph/step04.rst
+++ b/docs/tutorials/lxmlgraph/step04.rst
@@ -41,7 +41,7 @@ current hop in the URL. For ``repoze.lxmlgraph``, that "context"
object is a node in the XML document, found by traversing node
children.
-For the XSLT in Step 03, we passed in the context node. From the
+For the XSLT in Step 3, we passed in the context node. From the
XSLT's perpective, the universe started at the context node. It could
only see information in that node and the children beneath it.