33 lines
624 B
Markdown
33 lines
624 B
Markdown
# Configuration macOS
|
|
|
|
[Retour au Jour 0](README.md)
|
|
|
|
---
|
|
|
|
**Terminal**
|
|
- Ouvre Terminal (appuie sur `Cmd + Space`, tape "Terminal", puis Entrée)
|
|
|
|
**Homebrew**
|
|
- Vérifie si Homebrew est déjà installé :
|
|
```bash
|
|
brew --version
|
|
```
|
|
- Si tu obtiens "command not found", installe d'abord Homebrew :
|
|
```bash
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
```
|
|
|
|
**Claude Code**
|
|
- ```bash
|
|
brew install --cask claude-code
|
|
```
|
|
|
|
**Vérifier**
|
|
- ```bash
|
|
claude --version
|
|
```
|
|
|
|
---
|
|
|
|
Retourne maintenant à [README.md](README.md) pour configurer l'authentification.
|