summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-04-24 16:34:57 -0400
committerDax Raad <[email protected]>2025-04-24 16:34:57 -0400
commitd043526200c9061fadc831e730f94629cf58e47c (patch)
tree0c53baf98500d1f9939cc6853dc833299997cef0 /README.md
parentaaf0bc14ba86944fd6eb020bc368810241366855 (diff)
downloadopencode-d043526200c9061fadc831e730f94629cf58e47c.tar.gz
opencode-d043526200c9061fadc831e730f94629cf58e47c.zip
add more installation options
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 28 insertions, 1 deletions
diff --git a/README.md b/README.md
index cf2f7cc6f..e7609323f 100644
--- a/README.md
+++ b/README.md
@@ -22,8 +22,35 @@ OpenCode is a Go-based CLI application that brings AI assistance to your termina
## Installation
+### Using the Install Script
+
+```bash
+# Install the latest version
+curl -fsSL https://opencode.ai/install | bash
+
+# Install a specific version
+curl -fsSL https://opencode.ai/install | VERSION=0.1.0 bash
+```
+
+### Using Homebrew (macOS and Linux)
+
+```bash
+brew install opencode-ai/tap/opencode
+```
+
+### Using AUR (Arch Linux)
+
+```bash
+# Using yay
+yay -S opencode-bin
+
+# Using paru
+paru -S opencode-bin
+```
+
+### Using Go
+
```bash
-# Coming soon
go install github.com/opencode-ai/opencode@latest
```