added tutorial day 0

This commit is contained in:
Shayan Rais
2026-03-27 15:46:49 +05:00
parent 6e3dfaaefc
commit 9c1074e83d
5 changed files with 302 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# macOS Setup
[Back to Day 0](Day0.md)
---
**Terminal**
- Open Terminal (press `Cmd + Space`, type "Terminal", hit Enter)
**Homebrew**
- Check if Homebrew is already installed:
```bash
brew --version
```
- If you get "command not found", install Homebrew first:
```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
**Claude Code**
- ```bash
brew install --cask claude-code
```
**Verify**
- ```bash
claude --version
```
---
Now head back to [Day0.md](Day0.md) for authentication setup.