comparison docs/installation.rst @ 8632:bff02bfbe2d4

docs: clarify that "Installation from repository source" also will run from source
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 24 Aug 2020 14:00:58 +0200
parents a8980488b6ce
children c354d1a7537f
comparison
equal deleted inserted replaced
8631:e85f5bf7ad74 8632:bff02bfbe2d4
56 python3 -m venv ../kallithea-venv 56 python3 -m venv ../kallithea-venv
57 . ../kallithea-venv/bin/activate 57 . ../kallithea-venv/bin/activate
58 pip install --upgrade pip setuptools 58 pip install --upgrade pip setuptools
59 pip install --upgrade -e . 59 pip install --upgrade -e .
60 python3 setup.py compile_catalog # for translation of the UI 60 python3 setup.py compile_catalog # for translation of the UI
61
62 .. note::
63 This will install all Python dependencies into the virtualenv. Kallithea
64 itself will however only be installed as a pointer to the source location.
65 The source clone must thus be kept in the same location, and it shouldn't be
66 updated to other revisions unless you want to upgrade. Edits in the source
67 tree will have immediate impact (possibly after a restart of the service).
61 68
62 You can now proceed to :ref:`install-front-end`. 69 You can now proceed to :ref:`install-front-end`.
63 70
64 .. _installation-virtualenv: 71 .. _installation-virtualenv:
65 72