From 1e95326e12183286fc6cbd828c8a86a0d8e03c62 Mon Sep 17 00:00:00 2001 From: Saadiq Rodgers-King Date: Mon, 3 Nov 2025 09:59:16 -0500 Subject: [PATCH] docs: Update README installation options to match official docs Expands the installation section to include all available methods: - macOS/Linux (curl installer) - Homebrew - Windows (PowerShell installer) - NPM This brings the repository README in line with the official documentation at https://docs.claude.com/en/docs/claude-code/overview --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f3a7144..9cdbeb7 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,26 @@ Claude Code is an agentic coding tool that lives in your terminal, understands y 1. Install Claude Code: -```sh +**macOS/Linux:** +```bash +curl -fsSL https://claude.ai/install.sh | bash +``` + +**Homebrew:** +```bash +brew install --cask claude-code +``` + +**Windows:** +```powershell +irm https://claude.ai/install.ps1 | iex +``` + +**NPM:** +```bash npm install -g @anthropic-ai/claude-code ``` +Requires [Node.js 18+](https://nodejs.org/en/download/) 2. Navigate to your project directory and run `claude`.