I already read the documentation in which it says
The current project is installed in editable mode by default.
If you want to install the dependencies only, run the
install
command with the--no-root
flag:
What does install --no-root
do?
In which cases would a user or developer use this instead of the normal install?
Should I use --no-root
while still developing?
And if I want to install the project itself (one of the explanations) later, how can I do this?
--no-root
and until now no one could explain it to me. The only use case I've found for me so far is python-poetry.org/docs/faq/#usecase-2 – Hype--no-root
. – Myriammyriameter