From 4b24fd58e9e725faafe28c5cefcd02c779178eb4 Mon Sep 17 00:00:00 2001 From: "Steven B." <51370195+sdb9696@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:56:22 +0100 Subject: [PATCH] Update version specific install instructions --- source/_includes/common-tasks/beta_version.md | 2 +- source/_includes/common-tasks/development_version.md | 2 +- source/_includes/common-tasks/specific_version.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_includes/common-tasks/beta_version.md b/source/_includes/common-tasks/beta_version.md index f1dbf69adb2a..9d1b117018ab 100644 --- a/source/_includes/common-tasks/beta_version.md +++ b/source/_includes/common-tasks/beta_version.md @@ -72,7 +72,7 @@ docker pull {{ site.installation.container }}:beta 4. Download and install the beta version. ```bash - pip3 install --pre --upgrade homeassistant + uv pip install --pre --upgrade homeassistant ``` 5. When that is complete, start the service again for it to use the new files. diff --git a/source/_includes/common-tasks/development_version.md b/source/_includes/common-tasks/development_version.md index d2e2cbccb9fa..b0f464e0aac5 100644 --- a/source/_includes/common-tasks/development_version.md +++ b/source/_includes/common-tasks/development_version.md @@ -55,7 +55,7 @@ docker pull {{ site.installation.container }}:dev 4. Download and install the version you want. ```bash - pip3 install --upgrade git+https://github.com/home-assistant/core.git@dev + uv pip install --upgrade git+https://github.com/home-assistant/core.git@dev ``` 5. When that is complete, start the service again for it to use the new files. diff --git a/source/_includes/common-tasks/specific_version.md b/source/_includes/common-tasks/specific_version.md index fe9c4ab215e8..7e072026d566 100644 --- a/source/_includes/common-tasks/specific_version.md +++ b/source/_includes/common-tasks/specific_version.md @@ -49,7 +49,7 @@ docker pull {{ site.installation.container }}:{{current_version}} 4. Download and install the version you want. ```bash - pip3 install homeassistant=={{current_version}} + uv pip install homeassistant=={{current_version}} ``` 5. When that is complete start the service again for it to use the new files.