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
+19-12Lines changed: 19 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, the recommended method is winget:
65
66
66
67
```console
67
-
npm install -g @anthropic-ai/claude
68
+
winget install Anthropic.ClaudeCode
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
+
You can also install using npm, although this is deprecated:
72
+
73
+
```console
74
+
npm install -g @anthropic-ai/claude-code
75
+
```
76
+
77
+
For other options, please [see the Claude Code setup page](https://code.claude.com/docs/en/setup).
71
78
72
79
### Verify installation
73
80
@@ -80,7 +87,7 @@ claude --version
80
87
The output shows the installed version:
81
88
82
89
```output
83
-
2.0.69 (Claude Code)
90
+
2.1.7 (Claude Code)
84
91
```
85
92
86
93
## How do I authenticate Claude Code?
@@ -99,9 +106,9 @@ cd your-project
99
106
claude
100
107
```
101
108
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
109
+
3.Choose your configuration options from the wizard (dark mode, etc).
110
+
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.
111
+
5.Accept the acknowledgements in Claude Code and the application will be ready to use.
105
112
106
113
Claude Code automatically saves your authentication credentials for future sessions.
107
114
@@ -175,7 +182,7 @@ Navigate to your project directory and add the Arm MCP Server:
175
182
176
183
```console
177
184
cd your-project
178
-
claude mcp add --transport stdio arm-mcp -- docker run --rm -i -v "$(pwd):/workspace" armlimited/arm-mcp:latest
185
+
claude mcp add --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
179
186
```
180
187
181
188
This configuration is stored in `~/.claude.json` under your project's path and is only accessible when working in this directory.
@@ -185,7 +192,7 @@ This configuration is stored in `~/.claude.json` under your project's path and i
185
192
To make the Arm MCP Server available across all your projects:
186
193
187
194
```console
188
-
claude mcp add --scope user --transport stdio arm-mcp -- docker run --rm -i -v "$(pwd):/workspace" armlimited/arm-mcp:latest
195
+
claude mcp add --scope user --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
189
196
```
190
197
191
198
This configuration is stored in `~/.claude.json` and is accessible from any project directory.
@@ -196,7 +203,7 @@ To share the MCP server configuration with your team via version control:
196
203
197
204
```console
198
205
cd your-project
199
-
claude mcp add --scope project --transport stdio arm-mcp -- docker run --rm -i -v "$(pwd):/workspace" armlimited/arm-mcp:latest
206
+
claude mcp add --scope project --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
200
207
```
201
208
202
209
This creates a `.mcp.json` file in your project root that can be committed to version control.
0 commit comments