You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/install-guides/claude-code.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ author: Pareena Verma
7
7
minutes_to_complete: 10
8
8
official_docs: https://code.claude.com/docs
9
9
10
+
layout: installtoolsall
10
11
multi_install: false
11
12
multitool_install_part: false
12
13
tool_install: true
@@ -23,7 +24,7 @@ You need a Claude account to use Claude Code. A Claude.ai account is recommended
23
24
24
25
If you don't have a Claude account, visit [Claude.ai](https://claude.ai/) and sign up.
25
26
26
-
Claude Code offers various pricing tiers including free usage for verified users. Visit [Claude pricing](https://www.anthropic.com/pricing) to review the options.
27
+
Claude Code is only available for paid Pro and Max accounts, if not using API credits. Visit [Claude pricing](https://www.anthropic.com/pricing) to review the options.
On Windows systems, including Windows on Arm, install using npm:
65
+
On Windows systems, including Windows on Arm, run the following PowerShell command:
65
66
66
67
```console
67
-
npm install -g @anthropic-ai/claude
68
+
irm https://claude.ai/install.ps1 | iex
68
69
```
69
70
70
-
You can also download the Windows installer from the [Claude Code downloads page](https://code.claude.com/docs/en/setup).
71
+
For other options, please [see the Claude Code setup page](https://code.claude.com/docs/en/setup).
71
72
72
73
### Verify installation
73
74
@@ -80,7 +81,7 @@ claude --version
80
81
The output shows the installed version:
81
82
82
83
```output
83
-
2.0.69 (Claude Code)
84
+
2.1.7 (Claude Code)
84
85
```
85
86
86
87
## How do I authenticate Claude Code?
@@ -99,9 +100,9 @@ cd your-project
99
100
claude
100
101
```
101
102
102
-
3.On first use, Claude Code prompts you to log in through your browser
103
-
4.Follow the authentication prompts in your browser
104
-
5.Return to your terminal to continue
103
+
3.Choose your configuration options from the wizard (dark mode, etc).
104
+
4.On first use, Claude Code prompts you to log in through your browser if you are using your Claude account. If you are on a remote machine, Claude Code will give you a link to paste into a local browser, which will then provide you with a code to paste into Claude Code.
105
+
5.Accept the acknowledgements in Claude Code and the application will be ready to use.
105
106
106
107
Claude Code automatically saves your authentication credentials for future sessions.
107
108
@@ -175,7 +176,7 @@ Navigate to your project directory and add the Arm MCP Server:
175
176
176
177
```console
177
178
cd your-project
178
-
claude mcp add --transport stdio arm-mcp -- docker run --rm -i -v "$(pwd):/workspace" armlimited/arm-mcp:latest
179
+
claude mcp add --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
179
180
```
180
181
181
182
This configuration is stored in `~/.claude.json` under your project's path and is only accessible when working in this directory.
@@ -185,7 +186,7 @@ This configuration is stored in `~/.claude.json` under your project's path and i
185
186
To make the Arm MCP Server available across all your projects:
186
187
187
188
```console
188
-
claude mcp add --scope user --transport stdio arm-mcp -- docker run --rm -i -v "$(pwd):/workspace" armlimited/arm-mcp:latest
189
+
claude mcp add --scope user --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
189
190
```
190
191
191
192
This configuration is stored in `~/.claude.json` and is accessible from any project directory.
@@ -196,7 +197,7 @@ To share the MCP server configuration with your team via version control:
196
197
197
198
```console
198
199
cd your-project
199
-
claude mcp add --scope project --transport stdio arm-mcp -- docker run --rm -i -v "$(pwd):/workspace" armlimited/arm-mcp:latest
200
+
claude mcp add --scope project --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
200
201
```
201
202
202
203
This creates a `.mcp.json` file in your project root that can be committed to version control.
0 commit comments