From d3b0bbe284aba3947b38a48349a01d29029707dd Mon Sep 17 00:00:00 2001 From: MaKaNu <32844273+MaKaNu@users.noreply.github.com> Date: Thu, 21 Dec 2023 16:18:46 +0100 Subject: [PATCH 1/3] [Docs]: Update _index.md - add note for installation advice FIXES: #8811 --- docs/_index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/_index.md b/docs/_index.md index 06e800ea818..dc822c835a8 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -42,6 +42,10 @@ See the **advanced** installation instructions to use a preview or alternate ver [`pipx`](https://github.com/pypa/pipx) is used to install Python CLI applications globally while still isolating them in virtual environments. `pipx` will manage upgrades and uninstalls when used to install Poetry. +{{% note %}} +pipx is the installation approach which the user should choose to install multiple versions of pipx. +{{% /note %}} + {{< steps >}} {{< step >}} **Install Poetry** From 426a8069250cf21e4ab8a146f64e8505f5e3294d Mon Sep 17 00:00:00 2001 From: MaKaNu <32844273+MaKaNu@users.noreply.github.com> Date: Fri, 22 Dec 2023 15:40:53 +0100 Subject: [PATCH 2/3] [Fix]: Update _index.md - move parallel installation note - located now at subsection "advanced installation" --- docs/_index.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/_index.md b/docs/_index.md index dc822c835a8..030849f555b 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -42,10 +42,6 @@ See the **advanced** installation instructions to use a preview or alternate ver [`pipx`](https://github.com/pypa/pipx) is used to install Python CLI applications globally while still isolating them in virtual environments. `pipx` will manage upgrades and uninstalls when used to install Poetry. -{{% note %}} -pipx is the installation approach which the user should choose to install multiple versions of pipx. -{{% /note %}} - {{< steps >}} {{< step >}} **Install Poetry** @@ -179,6 +175,8 @@ You can also install Poetry from a `git` repository by using the `--git` option: ```bash curl -sSL https://install.python-poetry.org | python3 - --git https://github.com/python-poetry/poetry.git@master ```` +If you want to install different versions of poetry in parallel, a good approach is the installation with pipx and suffix. + {{< /step >}} {{< step >}} **Add Poetry to your PATH** From 824bd1c7654a06c596d9634cff4db104969f6d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Mon, 25 Dec 2023 07:46:33 +0100 Subject: [PATCH 3/3] Update docs/_index.md --- docs/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_index.md b/docs/_index.md index 030849f555b..30f17479162 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -175,7 +175,7 @@ You can also install Poetry from a `git` repository by using the `--git` option: ```bash curl -sSL https://install.python-poetry.org | python3 - --git https://github.com/python-poetry/poetry.git@master ```` -If you want to install different versions of poetry in parallel, a good approach is the installation with pipx and suffix. +If you want to install different versions of Poetry in parallel, a good approach is the installation with pipx and suffix. {{< /step >}} {{< step >}}