Skip to content

Commit 8baf285

Browse files
committed
docs: improve installation section with all options and clear guidance
1 parent 1a938af commit 8baf285

1 file changed

Lines changed: 28 additions & 3 deletions

File tree

README.md

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,46 @@ Plum works with any Claude Code marketplace. Here are some popular ones to get s
7373

7474
## Installation
7575

76-
**macOS/Linux users (recommended):**
76+
### macOS/Linux (Recommended)
7777

7878
```bash
7979
brew install itsdevcoffee/plum/plum
8080
plum
8181
```
8282

83-
**All platforms (requires Go 1.24+):**
83+
### Windows or Manual Install
84+
85+
Download pre-built binaries from [Releases](https://github.com/itsdevcoffee/plum/releases/latest)
86+
87+
**Available for:**
88+
- Windows (x64, ARM64)
89+
- Linux (x64, ARM64)
90+
- macOS (Intel, Apple Silicon)
91+
92+
Extract and run:
93+
```bash
94+
# Linux/macOS
95+
tar -xzf plum_*.tar.gz
96+
./plum
97+
98+
# Windows
99+
# Extract ZIP and run plum.exe
100+
```
101+
102+
### Go Developers (All Platforms)
84103

85104
```bash
86105
go install github.com/itsdevcoffee/plum/cmd/plum@latest
87106
plum
88107
```
89108

90-
**Note:** If `plum` command isn't found after `go install`, add `$GOPATH/bin` to your PATH or run `~/go/bin/plum` directly.
109+
**Requirements:** Go 1.24+
110+
**Note:** Version will show as "dev" when installed this way. Use Homebrew or pre-built binaries for version tracking.
111+
112+
**Troubleshooting:** If `plum` command isn't found after `go install`, add `$GOPATH/bin` to your PATH:
113+
```bash
114+
export PATH="$PATH:$HOME/go/bin" # Add to ~/.zshrc or ~/.bashrc
115+
```
91116

92117
## Key Features
93118

0 commit comments

Comments
 (0)