# HG changeset patch # User Vincent Hatakeyama <vincent.hatakeyama@xcg-consulting.fr> # Date 1660227221 -7200 # Thu Aug 11 16:13:41 2022 +0200 # Node ID 2a42e6728b227787d3e42a19ca2bf050cae0157e # Parent 087498ca69505c6363326f91b279f6264245dda6 📚 update develop installation instructions diff --git a/DEVELOP.rst b/DEVELOP.rst --- a/DEVELOP.rst +++ b/DEVELOP.rst @@ -1,7 +1,18 @@ -As :pep:517 does not provide a way to install for development purpose, it is necessary to follow these steps to install for development : +Installing Odoo Scripts for development +--------------------------------------- + +:pep:660 defines `Editable installs for pyproject.toml based builds`, this should not be necessary if your pip version is recent enough. + +This should be enough to install in dev mode: + +.. code-block:: SH + + python3 -m pip install --user -e ".[docker,import_sql,conf2reST,source_control]" --upgrade + +This can be tried to install in dev mode without using the toml file: .. code-block:: SH mv pyproject.toml pyproject.toml\~ - pip3 install --user -e ".[docker,import_sql,conf2reST,source_control]" --upgrade + python3 -m pip install --user -e ".[docker,import_sql,conf2reST,source_control]" --upgrade mv pyproject.toml\~ pyproject.toml