From e47e8fe9656b9f23891f9651f7bbc881f9e2bc7f Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 20 Sep 2024 15:15:34 -0500 Subject: [PATCH] Add the execution policy to powershell installs for single versions (#7602) --- docs/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 34e81fa34741..f0dc6851c8a9 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -31,7 +31,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