Skip to content

Commit 087d08e

Browse files
committed
Install guide updates
1 parent 7f294e9 commit 087d08e

2 files changed

Lines changed: 18 additions & 5 deletions

File tree

content/install-guides/asct.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ ASCT is distributed as a Python package and requires Python 3.10 or later.
8686

8787
Download the latest ASCT release from the [artifacts.tools.arm.com](https://artifacts.tools.arm.com/asct/dist/) page.
8888

89-
For example, to download version 0.4.2:
89+
For example, to download version 0.5.1:
9090

9191
```bash
92-
wget https://artifacts.tools.arm.com/asct/dist/0.4.2/asct-0.4.2+3b955c2.tar.gz
92+
wget https://artifacts.tools.arm.com/asct/dist/0.5.1/asct-0.5.1+11d418d-release.tar.gz
9393
```
9494

9595
### How do I install ASCT using uv?
@@ -100,10 +100,23 @@ The recommended method uses [uv](https://github.com/astral-sh/uv), a fast Python
100100
curl -LsSf https://astral.sh/uv/install.sh | sh
101101
```
102102

103+
Extract the release archive
104+
105+
```bash
106+
tar xzf asct-0.5.1+11d418d-release.tar.gz
107+
```
108+
109+
Create the required directories
110+
111+
```bash
112+
sudo mkdir -p /opt/uv/tools /usr/local/bin
113+
```
114+
103115
Install ASCT system-wide using:
104116

105117
```bash
106-
UV_TOOL_BIN_DIR=/usr/local/bin sudo -E $(which uv) tool install asct-0.4.2+3b955c2.tar.gz
118+
cd asct-0.5.1+11d418d
119+
sudo UV_TOOL_DIR=/opt/uv/tools UV_TOOL_BIN_DIR=/usr/local/bin $(which uv) tool install ./asct-0.5.1+11d418d.tar.gz
107120
```
108121

109122
This installs ASCT to `/usr/local/bin` making it available system-wide. Installing to `/usr/local/bin` instead of the default `~/.local/bin` allows you to run ASCT with `sudo`, which is required for some benchmarks to access system resources and configure huge pages.
@@ -119,7 +132,7 @@ asct version
119132
The output is similar to:
120133

121134
```output
122-
ASCT 0.4.2+3b955c2
135+
ASCT 0.5.1+11d418d
123136
```
124137

125138
Display the help information:

content/install-guides/kiro-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ kiro-cli version
106106
The output shows the version:
107107

108108
```output
109-
kiro-cli 1.21.0
109+
kiro-cli 1.28.1
110110
```
111111

112112
## How can I configure my AWS account to get the most from Kiro CLI?

0 commit comments

Comments
 (0)