Choosing a Claude plan and installing the Claude app

What this gets you: the Claude app on your Mac, signed in to a plan that can do the work, with a session open on the folder you point it at. You are sent here from: Day Zero, before the first session, and again from milestone 01 when the plan question comes up.

Before you start

The money conversation

Prices as of the date at the bottom of this page, read from Anthropic's own pricing page:

Plan Price What it is for
Free $0 Does not include Claude Code. It cannot run this course.
Pro $17 a month billed annually, or $20 a month The floor. This course runs on it.
Max from $100 a month Comes in two sizes: five times Pro's usage, or twenty times.

Three notes on that table.

Pro is enough to finish this course, and plenty of people will. What Pro is not is comfortable on a long building day. Every plan has a usage allowance that refills on a schedule, and on a heavy afternoon Pro can run out before the day does. When it does, Claude Code stops mid-step and tells you when the allowance comes back.

Max buys more room, and the weeks it is worth having are the weeks the app is actually being built. That is milestones 04 through 06, which are some way off.

Today is not the day to decide. Nothing in the first two milestones is heavy. Start on whatever plan you have, see how a real building day feels, and change later if it pinches. Changing plans takes a minute and does not disturb anything on your Mac.

Steps

Get a plan

  1. Open claude.com/pricing in your browser.
  2. Read the current prices there rather than the table above, since prices change and this page is a snapshot.
  3. Choose Pro if you have no plan yet.
  4. Complete the sign-up in Anthropic's own checkout. You press the payment button. Nobody presses it for you.

If you already pay for Pro or Max, skip all four and go to step 5.

Install the app

  1. Open claude.com/download in your browser.
  2. Click the button labelled Download for macOS. One button covers every Mac Apple sells, so there is no version to choose.
  3. Open the file your browser just downloaded. It is a disk image, which is a file that opens into a small window of its own rather than into an app.
  4. Do what that window shows you. On a Mac this is almost always dragging the Claude icon onto the Applications folder pictured beside it.
  5. Open Claude from your Applications folder.
  6. Sign in with the Claude account from step 4.

Your password goes into Anthropic's own sign-in screen. It never goes into a message to Claude, and the Mac remembers the sign-in, so this happens once rather than every session.

Open the part that builds apps

  1. Click the tab labelled Code, along the top of the window.

The app has three tabs. Chat is ordinary conversation, with no access to your files. Cowork hands Claude a long job to go away and do on its own. Code reads and changes files on your Mac, and it is the only one this course uses.

Point a session at a folder

A session is one continuous conversation about one folder. It keeps its own history and its own changes, and it stays in the list until you archive it, so the session you start today is the one you come back to next week.

  1. Click New session in the list running down the left side of the window.

  2. Choose Local where the app asks where the session should run.

    Local means Claude works on this Mac, on the files in the folder you are about to choose. The other choices run Claude on computers elsewhere, which cannot see your course folder at all. Local is the only one this course uses.

  3. Click Select folder and choose the folder you want to work in.

the Code tab with Local chosen and the Select folder control visible, before any folder has been picked
  1. Type into the box at the bottom of the window and press Return.

What it looks like when it worked

The Code tab opens rather than offering to sell you a plan.

A session appears in the list on the left, showing the name of the folder you chose, and the box at the bottom of the window waits for you to type.

From here, Day Zero has you unzip the course folder and start the first session on it. The way back in is the same every time: open Claude, click Code, click your course session in the list on the left, and type.

If it looks different

Anthropic ships this app often, so the window changes shape. What does not change is the shape of the check: the Code tab opens, you choose where the session runs and which folder, and a box waits for you to type.

If clicking Code offers to upgrade you instead of opening, the paid plan has not taken effect on this account yet. Finish the sign-up, then quit the app completely, not just close the window, and open it again.

There is more than one way to run Claude Code, and a friend or another page may tell you about them. It also runs in a web browser, inside two code editors called VS Code and JetBrains, and as a typing-only version in a terminal window. They are all the same Claude Code. This course is written around the app because it needs nothing else installed first and it asks the least of a person who has never built software. The terminal route is written up in the appendix at the end of this page, and in the appendix at the end of Day Zero, for anyone who prefers it.

If it goes wrong

Appendix: the terminal route

Nothing here is required. The app above is the supported route, and if it worked you are finished with this page.

Claude Code also comes as a typing-only version that runs in a window called a terminal, which is a window where you type one line of text, press Return, and the Mac does what the line says. It comes with every Mac and the app is called Terminal. Some people who have used one before would rather work that way. Installing it does not remove or disturb the app.

Open Terminal for the first time

  1. Press the Command key and the Space bar together. A search box opens in the middle of the screen.
  2. Type Terminal.
  3. Press Return.

A window opens with a short line of text and a blinking block or bar after it. That line is the prompt. It usually shows your Mac's name and the folder you are in, and it means the terminal is ready for you to type.

Two things to know about this window. You cannot click on the text to move the cursor, so use the arrow keys. And nothing here is dangerous by itself. A terminal that is sitting there doing nothing is exactly as harmless as it looks.

Install the typing-only Claude Code

  1. Copy this line exactly:

    curl -fsSL https://claude.ai/install.sh | bash
  2. Click into the Terminal window and paste it by pressing Command and V together.

  3. Press Return.

That line downloads Anthropic's installer from claude.ai and runs it. Text scrolls past while it works. When it finishes it prints Claude Code successfully installed!.

The install asks for no password. It puts Claude Code inside your own home folder, which you already own, so macOS has nothing to ask permission for. Milestone 01 installs a different tool that does ask for your Mac password, and the guidebook's homebrew-password.md page explains why that one is different.

  1. Type claude --version and press Return.

The answer is a version number followed by (Claude Code), something like 2.1.211 (Claude Code).

  1. Type claude and press Return.
  2. Follow what appears on screen. A browser window opens for you to sign in.
  3. Come back to the Terminal window when the browser says you are signed in.

To work in a particular folder from here: type cd with a space after it, which is the command for moving to a folder, drag the folder from Finder onto the Terminal window, press Return, then type claude and press Return.

If the terminal route goes wrong


Checked against: claude.com/download, code.claude.com/docs (desktop application, get started with the desktop app, quickstart, terminal guide, advanced setup, manage costs) and claude.com/pricing. Last verified: 2026-08-29. Companies move their buttons. When a screen does not match this page, trust what the step accomplishes and tell Claude what you see.