Something went wrong on our end
-
Vincent Hatakeyama authoredVincent Hatakeyama authored
DEVELOP.rst 642 B
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:
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:
mv pyproject.toml pyproject.toml\~
python3 -m pip install --user -e ".[docker,import_sql,conf2reST,source_control]" --upgrade
mv pyproject.toml\~ pyproject.toml