docs: don't auto-install Go in Windows installer; instruct user instead (fixes #292) (#302)

This commit is contained in:
matt wilkie
2025-11-12 15:15:46 -07:00
committed by GitHub
parent fee6ef2930
commit 0cba73bfc6
2 changed files with 47 additions and 10 deletions

View File

@@ -91,20 +91,23 @@ go build -o bd ./cmd/bd
npm install -g @beads/bd
```
**Quick install (all platforms):**
**Quick install (macOS / Linux):**
```bash
curl -fsSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash
```
**Quick install (Windows - PowerShell):**
```powershell
irm https://raw.githubusercontent.com/steveyegge/beads/main/install.ps1 | iex
```
**Homebrew (macOS/Linux):**
```bash
brew tap steveyegge/beads
brew install bd
```
**Other platforms and methods:** See [docs/INSTALLING.md](docs/INSTALLING.md) for Windows, Arch Linux, and manual installation.
**IDE Integration:** See [docs/INSTALLING.md](docs/INSTALLING.md) for Claude Code plugin and MCP server setup.
For full, platform-specific instructions (Windows, Arch Linux, manual builds, IDE integrations, etc.) see the canonical guide in [docs/INSTALLING.md](docs/INSTALLING.md).
**Claude Code for Web:** See [npm-package/CLAUDE_CODE_WEB.md](npm-package/CLAUDE_CODE_WEB.md) for SessionStart hook setup.