# HG changeset patch # User Thomas De Schampheleire # Date 2015-03-14 21:51:33 # Node ID 5e66d3ec9880073b78653861518fe810c3bb1754 # Parent 24e426cd40ac95b56016d7a123e7f3db3d5bd172 docs/installation: add section on installation from repository source As we actually recommend this method, describe it as first option in the installation instructions. diff --git a/docs/installation.rst b/docs/installation.rst --- a/docs/installation.rst +++ b/docs/installation.rst @@ -10,6 +10,22 @@ Installation on Unix/Linux .. Note:: Alternative very detailed installation instructions for Ubuntu Server with celery, indexer and daemon scripts: https://gist.github.com/4546398 +Installing Kallithea from repository source +------------------------------------------- + +The Kallithea development repository is stable and can be used in production. +Follow these instructions:: + + hg clone https://kallithea-scm.org/repos/kallithea + cd kallithea + virtualenv ../kallithea-venv + source ../kallithea-venv/bin/activate + python setup.py develop + +You can now proceed to :ref:`setup`. + +To upgrade, simply update the repository with ``hg pull -u`` and restart the +server. Installing Kallithea from Python Package Index (PyPI) -----------------------------------------------------