Commit 41a8a470 by Bartosz Sokorski Committed by GitHub

docs: rework installation and update docs

Also tweak the plugin docs to match

Co-authored-by: Bjorn Neergaard <bjorn@neersighted.com>
parent 63afbd32
...@@ -233,14 +233,19 @@ pipx runpip poetry uninstall poetry-plugin ...@@ -233,14 +233,19 @@ pipx runpip poetry uninstall poetry-plugin
### With `pip` ### With `pip`
If you used `pip` to install Poetry you can add the plugin packages via the `pip install` command. The `pip` binary in Poetry's virtual environment can also be used to install and remove plugins.
The environment variable `$POETRY_HOME` here is used to represent the path to the virtual environment.
The [installation instructions](/docs/) can be referenced if you are not
sure where Poetry has been installed.
To add a plugin, you can use `pip install`:
```shell ```shell
pip install --user poetry-plugin $POETRY_HOME/bin/pip install --user poetry-plugin
``` ```
If you want to uninstall a plugin, you can run: If you want to uninstall a plugin, you can run:
```shell ```shell
pip uninstall poetry-plugin $POETRY_HOME/bin/pip uninstall poetry-plugin
``` ```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment