Fixed the install docs.
--HG--
branch : trunk
diff --git a/docs/intro.rst b/docs/intro.rst
index b68b04a..fc68e68 100644
--- a/docs/intro.rst
+++ b/docs/intro.rst
@@ -42,7 +42,7 @@
circumvented by passing the ``--without-speedups`` command line argument to the
setup script::
- $ python setup.py install --with-speedups
+ $ python setup.py --with-speedups install
(As of Jinja 2.2, the speedups are disabled by default and can be enabled
with ``--with-speedups``. See :ref:`enable-speedups`)
@@ -122,11 +122,8 @@
You can enable the speedups extension when installing using the
``--with-speedups`` flag::
- sudo python setup.py install --with-speedups
+ sudo python setup.py --with-speedups install
-You can also pass this parameter to `pip`::
-
- $ pip install --install-option='--with-speedups' Jinja2
Basic API Usage