diff options
-rw-r--r-- | build.sh | 2 | ||||
-rw-r--r-- | continuedev/README.md | 15 | ||||
-rw-r--r-- | continuedev/pyproject.toml | 2 | ||||
-rw-r--r-- | extension/package-lock.json | 4 | ||||
-rw-r--r-- | extension/package.json | 2 | ||||
-rwxr-xr-x | install-dependencies.sh | 1 |
6 files changed, 19 insertions, 7 deletions
@@ -8,7 +8,7 @@ rm -rf continuedev/.venv # 2. Create a new virtual environment and activate it python3 -m venv env -source env/bin/activate +. env/bin/activate # 3. Install the required packages pip install -r continuedev/requirements.txt diff --git a/continuedev/README.md b/continuedev/README.md index 542274b5..b6f87cb0 100644 --- a/continuedev/README.md +++ b/continuedev/README.md @@ -23,7 +23,11 @@ Start it by running the following commands: Once you've validated that this works, you'll often want to use a debugger, in which case we've provided a launch configuration for VS Code in `.vscode/launch.json`. To start the debugger in VS Code, ensure that the workspace directory is the root of the `continue` repo, then press F5. -> Note: To start the debugger, you'll have to select the poetry Python interpreter (`/path-to-poetry-venv/bin/python3`) in the bottom right of the VS Code window. If you don't see this, you may have to install the [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python). +> [!NOTE] +> To start the debugger, you'll have to select the poetry Python interpreter +> (`/path-to-poetry-venv/bin/python3`) in the bottom right of the VS Code window. If you +> don't see this, you may have to install the [Python +> extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python). ## Scripts @@ -65,6 +69,15 @@ Run this command to use the install script cd continue/extension/scripts && python3 install_from_source.py ``` +> [!IMPORTANT] +> Ensure you have a Java Runtime Environment (JRE) installed. Verify this by typing `java +> -version` in your command prompt or terminal. If a version number appears, you're set. +> If not, download and install a JRE from Oracle's website or through a package manager, +> for example Homebrew. +> ```sh +> brew install openjdk@11 +> ``` + # Understanding the codebase - [Continue Server README](./README.md): learn about the core of Continue, which can be downloaded as a [PyPI package](https://pypi.org/project/continuedev/) diff --git a/continuedev/pyproject.toml b/continuedev/pyproject.toml index 0cea8343..40be7bb5 100644 --- a/continuedev/pyproject.toml +++ b/continuedev/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "continuedev" -version = "0.1.33" +version = "0.1.34" description = "" authors = ["Nate Sesti <sestinj@gmail.com>"] readme = "README.md" diff --git a/extension/package-lock.json b/extension/package-lock.json index c6611b74..f3478cf4 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.393", + "version": "0.0.394", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.393", + "version": "0.0.394", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index 3ff186fe..895b5b2a 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,7 +1,7 @@ { "name": "continue", "icon": "media/terminal-continue.png", - "version": "0.0.393", + "version": "0.0.394", "repository": { "type": "git", "url": "https://github.com/continuedev/continue" diff --git a/install-dependencies.sh b/install-dependencies.sh index b6060a98..ba350dea 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -1,4 +1,3 @@ - #!/bin/bash # This is used in a task in .vscode/tasks.json # Start developing with: |