diff options
-rw-r--r-- | continuedev/src/continuedev/core/sdk.py | 2 | ||||
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/core/sdk.py b/continuedev/src/continuedev/core/sdk.py index fe975b99..49513013 100644 --- a/continuedev/src/continuedev/core/sdk.py +++ b/continuedev/src/continuedev/core/sdk.py @@ -29,7 +29,7 @@ class Models: def __load_openai_model(self, model: str) -> OpenAI: async def load_openai_model(): api_key = await self.sdk.get_user_secret( - 'OPENAI_API_KEY', 'Enter your OpenAI API key, OR press enter to try for free') + 'OPENAI_API_KEY', 'Enter your OpenAI API key or press enter to try for free') if api_key == "": return ProxyServer(self.sdk.ide.unique_id, model) return OpenAI(api_key=api_key, default_model=model) 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 |