From de5015e149e2026bd81f2b4599924cd587257071 Mon Sep 17 00:00:00 2001 From: Chad Smith Date: Wed, 6 Mar 2019 13:30:27 -0800 Subject: [PATCH] add pipx as installation method #677 (#692) --- docs/docs/index.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/docs/docs/index.md b/docs/docs/index.md index 8781d38f902..2d4d12a0bf6 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -90,17 +90,23 @@ pip install --user poetry Be aware that it will also install Poetry's dependencies which might cause conflicts with other packages. -#### Installing with `pipsi` +#### Installing with `pipx` -Using [`pipsi`](https://github.com/mitsuhiko/pipsi) to install Poetry is also possible. +Using [`pipx`](https://github.com/cs01/pipx) to install Poetry is also possible. [pipx] is used to install Python CLI applications globally while still isolating them in virtual environments. This allows for clean upgrades and uninstalls. pipx supports Python 3.6 and later. If using an earlier version of Python, consider [pipsi](https://github.com/mitsuhiko/pipsi). ```bash -pipsi install poetry +pipx install poetry ``` -Make sure your installed version of `pipsi` is at least version `0.10`, -otherwise Poetry will not function properly. You can get it from its -[Github repository](https://github.com/mitsuhiko/pipsi). +```bash +pipx upgrade poetry +``` + +```bash +pipx uninstall poetry +``` + +[Github repository](https://github.com/cs01/pipx). ## Updating `poetry`