From c0177d013e79593e6444069feec08bc2dff9c157 Mon Sep 17 00:00:00 2001 From: Ty Dunn Date: Wed, 5 Jul 2023 23:20:01 -0700 Subject: running scripts is disabled error message --- extension/src/activation/environmentSetup.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'extension') diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index 71b774d9..d6c9241b 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -195,6 +195,11 @@ async function setupPythonEnv() { if (checkEnvExists()) { break; } else if (stderr) { + if (stderr.includes("Running Scripts is Disabled on this System")) { + vscode.window.showErrorMessage( + "A Python virtual enviroment cannot be activated because running scripts is disabled for this user. Please enable signed scripts to run with this command in PowerShell: `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser`, reload VS Code, and then try again." + ); + } throw new Error(stderr); } else { // Remove the env and try again -- cgit v1.2.3-70-g09d2