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 | 607ace7321d1ccf41292665ed625b44c222ec74b (patch) | |
tree | c5d8f0e9651fa86a1df2068ac6b84040b3304183 | |
parent | 0cd32ba813f5506c0871159658728b8ce31825e1 (diff) | |
download | sncontinue-607ace7321d1ccf41292665ed625b44c222ec74b.tar.gz sncontinue-607ace7321d1ccf41292665ed625b44c222ec74b.tar.bz2 sncontinue-607ace7321d1ccf41292665ed625b44c222ec74b.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."); } |