diff docs/installation.rst @ 5755:250f8150c4bb stable

docs: suggest using pip instead of setup.py develop
author Andrew Shadura <andrew@shadura.me>
date Sat, 12 Mar 2016 14:35:43 +0100
parents 4e9f5ef98dc4
children 8075ec3d0233 b777b096d9a2
line wrap: on
line diff
--- a/docs/installation.rst	Wed Feb 24 13:32:33 2016 +0100
+++ b/docs/installation.rst	Sat Mar 12 14:35:43 2016 +0100
@@ -40,7 +40,7 @@
         virtualenv ../kallithea-venv
         source ../kallithea-venv/bin/activate
         pip install --upgrade pip setuptools
-        python2 setup.py develop
+        pip install -e .
         python2 setup.py compile_catalog   # for translation of the UI
 
 You can now proceed to :ref:`setup`.
@@ -96,7 +96,7 @@
   Alternatively, download a .tar.gz from http://pypi.python.org/pypi/Kallithea,
   extract it and run::
 
-    python2 setup.py install
+    pip install .
 
 - This will install Kallithea together with pylons_ and all other required
   python libraries into the activated virtualenv.