module 01 setup
Install a terminal app
System Text-to-Speech Ready
Slide: 0:00 / 0:00
Slide 1 of 0Interactive Deck
Full Lesson Reference
Your computer ships with a default terminal, but you'll outgrow it quickly. Using a modern terminal app makes running Claude Code significantly easier and more productive.
Recommended Terminal Apps
Warp (macOS, Windows, Linux)
Warp is a modern, AI-friendly terminal. It is free and highly recommended for both Mac and Windows users.
- Split panes: Split your screen to read documentation or inspect files while Claude Code works in the other half (
Cmd+DorCtrl+D). - Command history & auto-complete: Search your past commands instantly.
- Modern editor features: Click anywhere to position your cursor, use selection shortcuts, and copy code with a click.
- Download: warp.dev
Superset (macOS only)
Superset is another excellent, free terminal specialized for multi-project workflows.
- Project groups: Group multiple terminal tabs together under specific client projects.
- Completion notifications: Get notified when Claude finishes a long running background command.
- Download: superset.sh
Windows Users: Install Git Bash
On Windows, Claude Code runs best through Git Bash, not the standard PowerShell or Command Prompt. Git Bash gives you a Linux-like terminal environment that matches macOS.
- Go to gitforwindows.org and click the download button.
- Run the installer. Accept all default settings during the setup wizard.
- Finish the installation. Git Bash will now appear in your Start menu—this is the app you will open whenever you want to use Claude Code.
- Tip: If you want a nicer interface, you can install Warp for Windows and configure it to run Git Bash inside it.
Essential Terminal Shortcuts
The terminal feels keyboard-heavy at first, but a few quick shortcuts will make you feel right at home.
- Drag and drop files/folders: Drag any file or folder from Finder (Mac) or File Explorer (Windows) directly into your terminal window. The full file path will paste automatically.
- Copy and Paste:
- Mac:
Cmd+Cto copy,Cmd+Vto paste. - Windows Git Bash: Right-click inside the terminal window to paste (standard
Ctrl+Vmight not work unless enabled in Git Bash options).
- Mac:
- Command History: Press the Up Arrow to retrieve the last command you ran. Press the Down Arrow to go forward.
- Tab Completion: Start typing a directory or filename and press Tab. The terminal will auto-complete the name, saving you from typos.
- Cancel Running Command: Press
Ctrl+Cto immediately stop whatever command is currently running. This works inside Claude Code too if it gets stuck. - Clear Screen: Press
Cmd+K(Mac) orCtrl+L(Windows) to clean up a cluttered screen.
Exercises
- Install Warp (Mac/Windows) or Superset (Mac). Windows users: ensure you download and install Git for Windows to get Git Bash.
- Open your new terminal app. Practice drag-and-drop: drag any folder from your desktop into the terminal window to verify the path automatically pastes.
- Type a command (e.g.
git --version), press Enter, and then press the Up Arrow to see if it recalls the command. - Type
cd Dand press Tab to see it auto-complete to directories starting with D (like Desktop).