From de75c564c80a1fcd25931123afc57b54900773c4 Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Thu, 18 Jun 2026 21:39:40 +0200 Subject: [PATCH 1/2] Document stack install path --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index ab9f6ddf504..f68bf829005 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,7 @@ PolicyEngine US is a microsimulation model of the US state and federal tax and benefit system. To install, run `pip install policyengine-us`. + +To install PolicyEngine US as part of a validated PolicyEngine stack, use the +extras published by `policyengine`, such as `pip install "policyengine[models]"` +or `pip install "policyengine[us-full]"`. From f0e0663c28b18e25f71ce680958a02e75d49d68e Mon Sep 17 00:00:00 2001 From: Anthony Volk Date: Mon, 22 Jun 2026 15:40:50 +0200 Subject: [PATCH 2/2] Document bundle install path --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f68bf829005..521d6dd3e36 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,9 @@ PolicyEngine US is a microsimulation model of the US state and federal tax and b To install, run `pip install policyengine-us`. -To install PolicyEngine US as part of a validated PolicyEngine stack, use the -extras published by `policyengine`, such as `pip install "policyengine[models]"` -or `pip install "policyengine[us-full]"`. +To install PolicyEngine US as part of a certified PolicyEngine bundle, use the +bundle installer published by `policyengine`, for example: + +```bash +uvx --from policyengine policyengine bundle install --country us --venv .venv +```