Skip to content

Commit c9ff67c

Browse files
Fix Week 1 Claude Code install commands (#18)
- macOS: brew install claude-code -> brew install --cask claude-code (cask is required) - Linux/WSL: install-cli endpoint -> install.sh endpoint (the old URL is no longer canonical) - Add PowerShell install path for native Windows users - Point the anchor link at code.claude.com/docs/en/overview instead of the legacy claude.ai/claude-code URL Fixes #17
1 parent bb038e1 commit c9ff67c

1 file changed

Lines changed: 18 additions & 4 deletions

File tree

courses/agentic-research/week-01.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -402,26 +402,40 @@ If all of these work, you are ready for Week 2.
402402
## Before Next Session
403403

404404
!!! note "Install Claude Code"
405-
Before Week 2, install [Claude Code](https://claude.ai/claude-code):
405+
Before Week 2, install [Claude Code](https://code.claude.com/docs/en/overview):
406406

407407
=== "macOS"
408408

409+
Native install (recommended, auto-updates):
410+
411+
```bash
412+
curl -fsSL https://claude.ai/install.sh | bash
413+
```
414+
415+
Or via Homebrew:
416+
409417
```bash
410-
brew install claude-code
418+
brew install --cask claude-code
411419
```
412420

413421
=== "Linux"
414422

415423
```bash
416-
curl -fsSL https://claude.ai/install-cli | sh
424+
curl -fsSL https://claude.ai/install.sh | bash
417425
```
418426

419427
=== "Windows"
420428

421429
In your WSL Ubuntu terminal:
422430

423431
```bash
424-
curl -fsSL https://claude.ai/install-cli | sh
432+
curl -fsSL https://claude.ai/install.sh | bash
433+
```
434+
435+
Or directly in PowerShell (requires [Git for Windows](https://git-scm.com/downloads/win)):
436+
437+
```powershell
438+
irm https://claude.ai/install.ps1 | iex
425439
```
426440

427441
Verify:

0 commit comments

Comments
 (0)