# HG changeset patch # User Goffi # Date 1616187822 -3600 # Node ID 6cef8aa1c99167bac9c3eecf4ba94737fcf55882 # Parent b38b8beac609d281d0fb339bfe1d8b2823086478 doc: add missing `pip install -e .` diff -r b38b8beac609 -r 6cef8aa1c991 doc/installation.rst --- a/doc/installation.rst Fri Mar 19 12:46:32 2021 +0100 +++ b/doc/installation.rst Fri Mar 19 22:03:42 2021 +0100 @@ -63,7 +63,20 @@ $ pip install -r requirements.txt -And that's it! Please refer to :ref:`post_installation` to initialize database. +And sat-pubsub itself:: + + $ pip install -e . + +And that's it! Please refer to `Post Installation`_ to initialize database. + +Next time you can update with:: + + $ hg pull -u + +.. note:: + + if requirements change, you may have to enter ``pip install -r requirements.txt`` + again, check also `Update`_ below) Installation From Sources ------------------------- @@ -95,8 +108,6 @@ installation with ``python setup.py install`` is not working properly. Please use ``pip install .`` instead. -.. _post_installation: - Post Installation -----------------