|
1 | 1 | # Installation |
2 | 2 |
|
3 | | -:warning: ECA is already automatically downloaded in all editor plugins, so you don't need to download it manually, even so, if you want that, follow below: |
4 | | - |
5 | | -Eca is written in Clojure and compiled into a native binary via graalvm. You can download the [native binaries from Github Releases](https://github.com/editor-code-assistant/eca/releases) or use one of the methods below: |
6 | | - |
7 | | -## Editor (recommended) |
8 | | - |
9 | | -ECA is already downloaded automatically by your ECA editor plugin, so you just need to install the plugin for your editor: |
10 | | - |
11 | | -- [Emacs](https://github.com/editor-code-assistant/eca-emacs) |
12 | | -- [VsCode](https://github.com/editor-code-assistant/eca-vscode) |
13 | | -- [Vim](https://github.com/editor-code-assistant/eca-nvim) |
14 | | -- Intellij: Planned, help welcome |
15 | | - |
16 | | -## Script (recommended if manual installing) |
17 | | - |
18 | | -Stable release: |
19 | | - |
20 | | -```bash |
21 | | -bash <(curl -s https://raw.githubusercontent.com/editor-code-assistant/eca/master/install) |
22 | | -``` |
23 | | - |
24 | | -Or if facing issues with command above: |
25 | | -```bash |
26 | | -curl -s https://raw.githubusercontent.com/editor-code-assistant/eca/master/install | sudo bash |
27 | | -``` |
28 | | - |
29 | | -nightly build: |
30 | | - |
31 | | -```bash |
32 | | -bash <(curl -s https://raw.githubusercontent.com/editor-code-assistant/eca/master/install) --version nightly --dir ~/ |
33 | | -``` |
34 | | - |
35 | | -## Homebrew (MacOS and Linux) |
36 | | - |
37 | | -We have a custom tap using the native compiled binaries for users that use homebrew: |
38 | | - |
39 | | -```bash |
40 | | -brew install editor-code-assistant/brew/eca |
41 | | -``` |
42 | | - |
| 3 | +Eca is written in Clojure and compiled into a native binary via graalvm. |
| 4 | + |
| 5 | +!!! info "Warning" |
| 6 | + |
| 7 | + ECA is already automatically downloaded and updated in all editor plugins, so you don't need to handle it manually, even so, if you want that, check the other methods. |
| 8 | + |
| 9 | +=== "Editor (recommended)" |
| 10 | + |
| 11 | + ECA is already downloaded automatically by your ECA editor plugin, so you just need to install the plugin for your editor: |
| 12 | + |
| 13 | + - [Emacs](https://github.com/editor-code-assistant/eca-emacs) |
| 14 | + - [VsCode](https://github.com/editor-code-assistant/eca-vscode) |
| 15 | + - [Vim](https://github.com/editor-code-assistant/eca-nvim) |
| 16 | + - Intellij: Planned, help welcome |
| 17 | + |
| 18 | +=== "Script (recommended if manual installing)" |
| 19 | + |
| 20 | + Stable release: |
| 21 | + |
| 22 | + ```bash |
| 23 | + bash <(curl -s https://raw.githubusercontent.com/editor-code-assistant/eca/master/install) |
| 24 | + ``` |
| 25 | + |
| 26 | + Or if facing issues with command above: |
| 27 | + ```bash |
| 28 | + curl -s https://raw.githubusercontent.com/editor-code-assistant/eca/master/install | sudo bash |
| 29 | + ``` |
| 30 | + |
| 31 | + nightly build: |
| 32 | + |
| 33 | + ```bash |
| 34 | + bash <(curl -s https://raw.githubusercontent.com/editor-code-assistant/eca/master/install) --version nightly --dir ~/ |
| 35 | + ``` |
| 36 | + |
| 37 | +=== "Homebrew" |
| 38 | + |
| 39 | + We have a custom tap using the native compiled binaries for users that use homebrew: |
| 40 | + |
| 41 | + ```bash |
| 42 | + brew install editor-code-assistant/brew/eca |
| 43 | + ``` |
| 44 | + |
| 45 | +=== "Gtihub releases" |
| 46 | + |
| 47 | + You can download the [native binaries from Github Releases](https://github.com/editor-code-assistant/eca/releases), although it's easy to have outdated ECA using this way. |
0 commit comments