From 3d7c0d7e9ce64c75cabc0f14436f853c4f0c7c84 Mon Sep 17 00:00:00 2001 From: MeowyCat1 Date: Sun, 19 Oct 2025 11:06:44 +0100 Subject: [PATCH] Update installation instructions for Windows PowerShell Added instructions for enabling PowerShell script execution on Windows. --- docs/installation.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/installation.rst b/docs/installation.rst index aed389e6..d871ecbc 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -129,6 +129,8 @@ Before you work on your project, activate the corresponding environment: Your shell prompt will change to show the name of the activated environment. +In windows, PowerShell scripts such as the venv activation script are blocked by default. To fix this, you should open PowerShell and run the command Set-ExecutionPolicy AllSigned or another policy that allows PowerShell scripts. Learn more at https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7.5 + Install Flask -------------