Fixed the install docs.
authorArmin Ronacher <armin.ronacher@active-4.com>
Sun, 13 Sep 2009 17:35:54 +0000 (10:35 -0700)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sun, 13 Sep 2009 17:35:54 +0000 (10:35 -0700)
--HG--
branch : trunk

docs/intro.rst

index b68b04ae18c20e9bfcd5e00ce8a23eab28c9eedf..fc68e68c6204148628c2cd801eef9f12bc252baa 100644 (file)
@@ -42,7 +42,7 @@ release with the speedups you will get a compiler error.  This however can be
 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 @@ is often the case if you are installing Jinja2 from a windows machine.
 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