diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-21 16:27:25 -0500 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-21 16:27:25 -0500 |
commit | d465766da25d89be6ab71e50cbe30725caee59c5 (patch) | |
tree | b104e623d0a59afbc2cfaf94c5fb6c3f1e14e620 | |
parent | 08e73ec81ebb2d91856b4dc711149e32e12fd701 (diff) | |
download | sncontinue-d465766da25d89be6ab71e50cbe30725caee59c5.tar.gz sncontinue-d465766da25d89be6ab71e50cbe30725caee59c5.tar.bz2 sncontinue-d465766da25d89be6ab71e50cbe30725caee59c5.zip |
python3 --> python
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index c341db39..94481430 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -139,7 +139,7 @@ export async function getPythonPipCommands() { if (!versionExists) { vscode.window.showErrorMessage( - "Continue requires Python3 version 3.8 or greater. Please update your Python3 installation, reload VS Code, and try again." + "Continue requires Python version 3.8 or greater. Please update your Python installation, reload VS Code, and try again." ); throw new Error("Python3.8 or greater is not installed."); } |