Problem
When using Poetry, the poetry shell command resulted in:
The command "shell" does not exist.
Cause
The shell command was moved to a plugin called poetry-plugin-shell. This plugin is not included in Poetry's core installation by default, leading to the error.
Solution
To resolve the issue, you need to install the poetry-plugin-shell plugin manually. Quoting Poetry's documentation:
The easiest way to install the shell plugin is via the self add command of Poetry.
poetry self add poetry-plugin-shell
If you used pipx to install Poetry you can add the plugin via the pipx inject command.
pipx inject poetry poetry-plugin-shell
Otherwise, if you used pip to install Poetry you can add the plugin packages via the pip install command.
pip install poetry-plugin-shell
How should we change the documentation, both in README.md and the Naptha website? Probably going to open a PR to address this.
Problem
When using Poetry, the poetry shell command resulted in:
Cause
The shell command was moved to a plugin called poetry-plugin-shell. This plugin is not included in Poetry's core installation by default, leading to the error.
Solution
To resolve the issue, you need to install the poetry-plugin-shell plugin manually. Quoting Poetry's documentation:
The easiest way to install the shell plugin is via the self add command of Poetry.
If you used pipx to install Poetry you can add the plugin via the pipx inject command.
Otherwise, if you used pip to install Poetry you can add the plugin packages via the pip install command.
How should we change the documentation, both in README.md and the Naptha website? Probably going to open a PR to address this.