Skip to content

Commit cda623f

Browse files
authored
Merge branch 'ArmDeveloperEcosystem:main' into content_review
2 parents c6d19ee + fa18ee5 commit cda623f

288 files changed

Lines changed: 3012 additions & 1042 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
-27.4 KB
Binary file not shown.
File renamed without changes.
-210 KB
Binary file not shown.
-83.7 KB
Binary file not shown.

content/install-guides/_images/MCUXpresso_Installer.png renamed to content/install-guides/_images/mcuxpresso_installer.png

File renamed without changes.
-24.8 KB
Binary file not shown.
-40.3 KB
Binary file not shown.
-37.3 KB
Binary file not shown.

content/install-guides/claude-code.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ author: Pareena Verma
77
minutes_to_complete: 10
88
official_docs: https://code.claude.com/docs
99

10+
layout: installtoolsall
1011
multi_install: false
1112
multitool_install_part: false
1213
tool_install: true
@@ -23,7 +24,7 @@ You need a Claude account to use Claude Code. A Claude.ai account is recommended
2324

2425
If you don't have a Claude account, visit [Claude.ai](https://claude.ai/) and sign up.
2526

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.
2728

2829
## How do I install Claude Code?
2930

@@ -56,18 +57,18 @@ curl -fsSL https://claude.ai/install.sh | bash
5657
Or install using Homebrew:
5758

5859
```bash
59-
brew install anthropics/claude/claude
60+
brew install --cask claude-code
6061
```
6162

6263
### Install on Windows on Arm
6364

64-
On Windows systems, including Windows on Arm, install using npm:
65+
On Windows systems, including Windows on Arm, run the following PowerShell command:
6566

6667
```console
67-
npm install -g @anthropic-ai/claude
68+
irm https://claude.ai/install.ps1 | iex
6869
```
6970

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).
7172

7273
### Verify installation
7374

@@ -80,7 +81,7 @@ claude --version
8081
The output shows the installed version:
8182

8283
```output
83-
2.0.69 (Claude Code)
84+
2.1.7 (Claude Code)
8485
```
8586

8687
## How do I authenticate Claude Code?
@@ -99,9 +100,9 @@ cd your-project
99100
claude
100101
```
101102

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.
105106

106107
Claude Code automatically saves your authentication credentials for future sessions.
107108

@@ -175,7 +176,7 @@ Navigate to your project directory and add the Arm MCP Server:
175176

176177
```console
177178
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
179180
```
180181

181182
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
185186
To make the Arm MCP Server available across all your projects:
186187

187188
```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
189190
```
190191

191192
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:
196197

197198
```console
198199
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
200201
```
201202

202203
This creates a `.mcp.json` file in your project root that can be committed to version control.

content/install-guides/mcuxpresso_vs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Download and run the installer.
6565

6666
Select one or more packages and click `Install`.
6767

68-
![MCUXpresso Installer #center](/install-guides/_images/MCUXpresso_Installer.png)
68+
![MCUXpresso Installer #center](/install-guides/_images/mcuxpresso_installer.png)
6969

7070
### Are there other embedded development extensions for VS Code?
7171

0 commit comments

Comments
 (0)