summaryrefslogtreecommitdiff
path: root/extension/src
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-07-05 23:20:01 -0700
committerTy Dunn <ty@tydunn.com>2023-07-05 23:20:01 -0700
commitd5a92ae77ab692c4f7d57e041a2927a41d8133bd (patch)
tree2ef3d4192e2aee98354aec80ee21c05129fdaba3 /extension/src
parent2d8c28965684d03ef711253e5555ef304882828f (diff)
downloadsncontinue-d5a92ae77ab692c4f7d57e041a2927a41d8133bd.tar.gz
sncontinue-d5a92ae77ab692c4f7d57e041a2927a41d8133bd.tar.bz2
sncontinue-d5a92ae77ab692c4f7d57e041a2927a41d8133bd.zip
running scripts is disabled error message
Diffstat (limited to 'extension/src')
-rw-r--r--extension/src/activation/environmentSetup.ts5
1 files changed, 5 insertions, 0 deletions
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