1Check what you need
- A computer running Windows 10 or Windows 11.
- A paid Claude plan: Pro, Max, Team or Enterprise. The free plan won't work. To check your plan, sign in at claude.ai, click your name in the bottom-left corner, and look at the plan name.
- An internet connection.
2Make a folder for Claude
Claude will only be asked to work on files in this folder.
- Press Windows key + E on your keyboard. A File Explorer window opens.
- In the list on the left side, click Documents.
- Right-click on an empty white area in the window, away from any files.
- In the menu, point to New, then click Folder.
- A new folder appears with its name highlighted. Type
claude-projectand press Enter. - Copy or move any files you want Claude to work on into this folder.
Leave File Explorer open. You'll need it in step 4.
3Install Node.js
Node.js is a free program. You need it to install Claude Code.
- Open your web browser and go to nodejs.org.
- Click the green button that says Get Node.js or Download Node.js (LTS).
- On the download page, click the Windows Installer (.msi) button. The file downloads.
- Open the downloaded file. You'll find it at the top right of your browser or in your Downloads folder.
- On the welcome screen, click Next.
- Check the box for I accept the terms in the License Agreement, then click Next.
- Keep clicking Next on every screen without changing anything. If you see a box about "tools for native modules," leave it unchecked.
- Click Install.
- If Windows asks "Do you want to allow this app to make changes to your device?", click Yes.
- When it says it's finished, click Finish.
4Open a terminal in your folder
A terminal is a window where you type commands instead of clicking.
- Go back to File Explorer and double-click your
claude-projectfolder to open it. - Right-click on an empty white area inside the folder.
- Click Open in Terminal.
If you don't see "Open in Terminal" (Windows 10): hold down the Shift key while you right-click, then click Open PowerShell window here.
- A window opens with a line of text and a blinking cursor.
Check: the line should end with
claude-project>. For example:PS C:\Users\Maria\Documents\claude-project>
How to run a command
Several steps below ask you to run a command. Every time, do these five things:
- On this page, click the Copy button on the dark command box.
- Click once inside the terminal window (the window you opened in step 4).
- Press Ctrl + V to paste. The command appears after the
>symbol. - Press Enter.
- Wait until a new line ending in
>appears. That means it's finished and ready for the next command.
5Allow Windows to run npm
Windows has a safety setting that blocks the installer you'll use in step 6. This command changes that setting for your Windows user account. You only do it once.
- Run this command:
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force
- Nothing will be printed. A new line ending in
claude-project>appears. That's correct. Go to step 6.If you see a message that says "not recognized": you're in Command Prompt instead of PowerShell. Close the window and redo step 4. Make sure the line starts withPS.
6Install Claude Code
- Run this command to check that Node.js is installed:
node -v
Check: you should see a version number starting withv, likev24.8.0.If you see "node is not recognized": close the terminal window, then redo step 4 to open a new one, and run the command again. If it still fails, restart your computer and try once more. - Run this command to install Claude Code:
npm install -g @anthropic-ai/claude-code
- Wait. This can take a minute or two. Text will scroll by. It's done when you see a line that starts with
addedand then a new line ending inclaude-project>.If you see red text that says "running scripts is disabled on this system": step 5 didn't take effect. Run the step 5 command again, then run this install command again. - Run this command to check that it worked:
claude --version
Check: you should see a number followed by(Claude Code), like2.1.273 (Claude Code).If you see "claude is not recognized": close the terminal window, redo step 4, and run this command again.
7Start Claude and sign in
You only sign in once. After this, Claude remembers you.
- Run this command:
claude
- Claude asks you to pick a color style. Press Enter to keep the first one.
- Claude asks how you want to sign in. Use the ↓ and ↑ arrow keys to highlight the option that says Claude account (with your subscription), then press Enter.
- Your web browser opens a Claude page. Sign in if it asks, then click Authorize.
If your browser doesn't open by itself: the terminal shows a long web address. Select it with your mouse, press Ctrl + C, paste it into your browser's address bar, and press Enter.
- Go back to the terminal window. It says the sign-in worked. Press Enter.
- If it shows more notes, press Enter to go past each one.
- Claude asks whether you trust the files in this folder. Highlight the Yes option and press Enter.
Check: you now see a box with a
>where you can type. Claude is running. - Type
/exitand press Enter. Claude closes and you're back at theclaude-project>line.
8Start Claude without approval questions
Normally Claude stops and asks "may I do this?" before many actions. This way of starting Claude skips those questions so it can work without waiting on you.
- Run this command:
claude --dangerously-skip-permissions
- The first time, Claude shows a warning with two choices. Press ↓ to highlight Yes, I accept, then press Enter. You'll only see this warning once.
Check: you see the box with a
>where you can type. Leave Claude running and go to step 9.
claude-project folder, and keep a copy of any important file somewhere else before you put it in that folder.9Connect your web browser
This lets you type to Claude from a browser window or from the Claude app on your phone, instead of the terminal. Claude still does the work on your computer.
- Click inside the terminal window where Claude is running.
- Type
/remote-controland press Enter. - The first time, a question appears. Highlight Enable Remote Control and press Enter.
- In your web browser, go to claude.ai/code.
- In the list of sessions, click the one that starts with your computer's name.
Check: you see a chat box. Anything you type there goes to Claude on your computer.
10Ask Claude to do something
Type what you want in plain English, in the terminal or the browser, and press Enter. Name the files you mean. Try one of these:
- To stop Claude in the middle of a task: press Esc.
- To close Claude: type
/exitand press Enter.
Every day after today
Steps 1 to 8 are done for good. Each day, just do this:
- Press Windows key + E, click Documents, and double-click
claude-project. - Right-click an empty area and click Open in Terminal.
- Run this command. It starts Claude without approval questions and connects your browser:
claude --dangerously-skip-permissions --remote-control
Want to continue yesterday's conversation instead of starting fresh? Run this one instead:
claude --continue --dangerously-skip-permissions --remote-control