From 522d8bf68ba27e50c216d4f401aff05737fa0281 Mon Sep 17 00:00:00 2001 From: kballinger Date: Thu, 5 Mar 2026 16:56:30 -0800 Subject: [PATCH 1/5] docs: add note about Microsoft Store Python PATH on Windows --- docs/_index.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/_index.md b/docs/_index.md index 9e0223535f0..6995e811664 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -190,6 +190,15 @@ The installer creates a `poetry` wrapper in a well-known, platform-specific dire - `%APPDATA%\Python\Scripts` on Windows. - `$POETRY_HOME/bin` if `$POETRY_HOME` is set. +{{% note %}} +If you have installed Python through the Microsoft Store, the `poetry` binary +will be installed to a different location: + +`%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python._qbz5n2kfra8p0\LocalCache\Roaming\Python\Scripts` + +Replace `` with your Python version (e.g. `3.12`). +{{% /note %}} + If this directory is not present in your `$PATH`, you can add it in order to invoke Poetry as `poetry`. From 19eedb75cabeea5c175613c32f69bf5bb273f9ff Mon Sep 17 00:00:00 2001 From: kballinger Date: Thu, 5 Mar 2026 17:23:57 -0800 Subject: [PATCH 2/5] docs: fix Microsoft Store Python path format in note --- docs/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_index.md b/docs/_index.md index 6995e811664..57d06e44817 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -194,9 +194,9 @@ The installer creates a `poetry` wrapper in a well-known, platform-specific dire If you have installed Python through the Microsoft Store, the `poetry` binary will be installed to a different location: -`%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python._qbz5n2kfra8p0\LocalCache\Roaming\Python\Scripts` +`%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\LocalCache\Roaming\Python\Scripts` -Replace `` with your Python version (e.g. `3.12`). +Replace `3.12` with your installed Python version. {{% /note %}} If this directory is not present in your `$PATH`, you can add it in order to invoke Poetry From eb47e6d3b712ea06fac80f86021476bbfb17667b Mon Sep 17 00:00:00 2001 From: Kelly Ballinger <165738945+KellyBallinger05@users.noreply.github.com> Date: Sat, 7 Mar 2026 15:55:16 -0800 Subject: [PATCH 3/5] Update docs/_index.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Randy Döring <30527984+radoering@users.noreply.github.com> --- docs/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_index.md b/docs/_index.md index 57d06e44817..eb61a2f7319 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -192,11 +192,11 @@ The installer creates a `poetry` wrapper in a well-known, platform-specific dire {{% note %}} If you have installed Python through the Microsoft Store, the `poetry` binary -will be installed to a different location: +will be installed to a different location, for example: `%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\LocalCache\Roaming\Python\Scripts` -Replace `3.12` with your installed Python version. +Replace `3.12` with your installed Python version and `qbz5n2kfra8p0` with your suffix. {{% /note %}} If this directory is not present in your `$PATH`, you can add it in order to invoke Poetry From a33643d3a12320b6b6da6e0c38ed1e802fdb4315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Sun, 15 Mar 2026 11:05:34 +0100 Subject: [PATCH 4/5] Try to fix rendering --- docs/_index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/_index.md b/docs/_index.md index eb61a2f7319..e9ff6f5d6ac 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -194,7 +194,9 @@ The installer creates a `poetry` wrapper in a well-known, platform-specific dire If you have installed Python through the Microsoft Store, the `poetry` binary will be installed to a different location, for example: -`%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\LocalCache\Roaming\Python\Scripts` +``` +%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\LocalCache\Roaming\Python\Scripts +``` Replace `3.12` with your installed Python version and `qbz5n2kfra8p0` with your suffix. {{% /note %}} From afd03cc338e29b3b38e73daeae50e274492d4a1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randy=20D=C3=B6ring?= <30527984+radoering@users.noreply.github.com> Date: Sun, 15 Mar 2026 11:31:31 +0100 Subject: [PATCH 5/5] Add manual line break... --- docs/_index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/_index.md b/docs/_index.md index e9ff6f5d6ac..c2394d6992f 100644 --- a/docs/_index.md +++ b/docs/_index.md @@ -195,7 +195,8 @@ If you have installed Python through the Microsoft Store, the `poetry` binary will be installed to a different location, for example: ``` -%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\LocalCache\Roaming\Python\Scripts +%LOCALAPPDATA%\Packages\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0 +\LocalCache\Roaming\Python\Scripts ``` Replace `3.12` with your installed Python version and `qbz5n2kfra8p0` with your suffix.