Skip to content
Snippets Groups Projects
Commit 2a42e6728b22 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:books: update develop installation instructions

parent 087498ca6950
No related branches found
No related tags found
2 merge requests!125🚑 fix pylint on odoo 11 with python 3.8,!123📚 update develop installation instructions
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 .. code-block:: SH
mv pyproject.toml pyproject.toml\~ mv pyproject.toml pyproject.toml\~
...@@ -2,6 +13,6 @@ ...@@ -2,6 +13,6 @@
.. code-block:: SH .. code-block:: SH
mv pyproject.toml pyproject.toml\~ 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 mv pyproject.toml\~ pyproject.toml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment