File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
7979brew install itsdevcoffee/plum/plum
8080plum
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
86105go install github.com/itsdevcoffee/plum/cmd/plum@latest
87106plum
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
You can’t perform that action at this time.
0 commit comments