From 3d57b6e795d41fe0cd476f58b813237738f64f19 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 5 Sep 2024 19:41:40 -0500 Subject: [PATCH] Add `-ExecutionPolicy ByPass` to Windows installer recommendations (#7106) --- docs/getting-started/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 5e62ccd3f..c8af8599b 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -17,7 +17,7 @@ uv provides a standalone installer to download and install uv: === "Windows" ```console - $ powershell -c "irm https://astral.sh/uv/install.ps1 | iex" + $ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" ``` By default, uv is installed to `~/.cargo/bin`. @@ -51,7 +51,7 @@ Request a specific version by including it in the URL: === "Windows" ```console - $ powershell -c "irm https://astral.sh/uv/0.4.6/install.ps1 | iex" + $ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/0.4.6/install.ps1 | iex" ``` !!! tip