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
This commit is contained in:
Saadiq Rodgers-King
2025-11-03 09:59:16 -05:00
parent b42fd9928c
commit 1e95326e12

View File

@@ -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`.