Module 1: Terminal BasicsLesson 2 of 7
0%
Lesson 2ยท2 min

Opening Your Terminal

Find and open the terminal on your operating system

Opening Your Terminal

Let's find the terminal on your computer. The steps differ by operating system.

macOS (Most Common in Aus Dev Community)

Terminal
Press: โŒ˜ + Space
Type: Terminal
Press: Enter
โ–Œ

Or find it in: Applications โ†’ Utilities โ†’ Terminal

Tip

Pro tip: Once open, right-click the Terminal icon in your Dock and select "Options โ†’ Keep in Dock" for easy access.

Windows

You have two options:

Option 1: PowerShell (Built-in)

  • Press Win + X
  • Click "Windows Terminal" or "PowerShell"

Option 2: Git Bash (Recommended)

  1. Download from git-scm.com
  2. Install with default options
  3. Right-click desktop โ†’ "Git Bash Here"

Warning

For Claude Code, we recommend Git Bash on Windows. It uses the same commands as Mac/Linux, making tutorials easier to follow.

Linux

  • Press Ctrl + Alt + T on most distributions
  • Or search for "Terminal" in your applications menu

What You Should See

Once open, you'll see something like:

Terminal
john@macbook ~ %
โ–Œ

Or on Windows:

Terminal
PS C:\Users\john>
โ–Œ

This is your prompt - it's ready for commands!

Aussie Note

On a Mac, your prompt might show a % instead of $. They mean the same thing - "ready for your command, mate!"

Quick Test

Type this and press Enter:

Terminal
$ whoami
john
โ–Œ

If it shows your username, you're ready to go! ๐ŸŽ‰