summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-21 16:43:20 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-21 16:43:20 -0700
commit0410e9da9264e9ece0daf0bbb0c7941f9dde710b (patch)
treeafd5a91bec47387cd4d18cbe5294726fdb780658 /extension
parentc6d21674d688cef3d93b63fc1bf0aa9e07a323e3 (diff)
parentbb15779cd480dd64492b030ec99485f8345b028f (diff)
downloadsncontinue-0410e9da9264e9ece0daf0bbb0c7941f9dde710b.tar.gz
sncontinue-0410e9da9264e9ece0daf0bbb0c7941f9dde710b.tar.bz2
sncontinue-0410e9da9264e9ece0daf0bbb0c7941f9dde710b.zip
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'extension')
-rw-r--r--extension/README.md10
-rw-r--r--extension/src/activation/environmentSetup.ts2
2 files changed, 11 insertions, 1 deletions
diff --git a/extension/README.md b/extension/README.md
index 2d449b92..2944325b 100644
--- a/extension/README.md
+++ b/extension/README.md
@@ -25,6 +25,16 @@ Let Continue build the scaffolding of Python scripts, React components, and more
- “/edit make an IAM policy that creates a user with read-only access to S3”
- “/edit use this schema to write me a SQL query that gets recently churned users”
+## Install
+
+Continue requires that you have Python 3.8 or greater. If you do not, please [install](https://python.org) it
+
+If your Continue server is not setting up, please check the console logs:
+1. `cmd+shift+p` (MacOS) / `ctrl+shift+p` (Windows)
+2. Search for and then select "Developer: Toggle Developer Tools"
+3. Select `Console`
+4. Read the console logs
+
## OpenAI API Key
New users can try out Continue with GPT-4 using a proxy server that securely makes calls to OpenAI using our API key. Continue should just work the first time you install the extension in VS Code.
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.");
}