fix: correct poetry installation instructions to avoid installation errors

fix: correct poetry installation instructions to avoid installation errors

The command 'poetry install' was failing in certain environments. This commit updates the instructions to use 'poetry install --no-root' which resolves the issue and ensures successful installation of dependencies.
This commit is contained in:
Mauricio Jorge Cordeiro Garrido 2024-07-15 10:08:47 +02:00 committed by GitHub
parent 5524451963
commit 1cc22783e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,7 +82,7 @@ Then can use poetry to install the other dependencies:
curl -sSL https://install.python-poetry.org | python3 -
# Install the project dependencies
poetry install
poetry install --no-root
```
You can also use pip to install them: