Skip to content

Commit 2bde341

Browse files
committed
fix download links [skip ci]
1 parent 10ae46f commit 2bde341

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

docs/NODE_GUIDE.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ Download the appropriate ZIP file for your system using the commands below or fr
5050
2. Download the ZIP file:
5151

5252
```sh
53-
curl -L -o dkn-compute-node.zip https://github.com/firstbatchxyz/dkn-compute-launcher/releases/download/latest/dkn-compute-launcher-macOS-arm64.zip
53+
# for arm64, use arm64
54+
curl -L -o dkn-compute-node.zip https://github.com/firstbatchxyz/dkn-compute-launcher/releases/latest/download/dkn-compute-launcher-macOS-arm64.zip
55+
# for x86_64, use amd64
56+
curl -L -o dkn-compute-node.zip https://github.com/firstbatchxyz/dkn-compute-launcher/releases/latest/download/dkn-compute-launcher-macOS-amd64.zip
5457
```
5558

5659
3. Unzip the downloaded file:
@@ -75,13 +78,16 @@ Download the appropriate ZIP file for your system using the commands below or fr
7578
uname -m
7679
```
7780
78-
- If the output is `x86_64`, download the `amd64` version.
7981
- If it's `aarch64`, download the `arm64` version.
82+
- If the output is `x86_64`, download the `amd64` version.
8083

8184
2. Download the ZIP file:
8285

8386
```sh
84-
curl -L -o dkn-compute-node.zip https://github.com/firstbatchxyz/dkn-compute-launcher/releases/download/latest/dkn-compute-launcher-linux-amd64.zip
87+
# for aarch64, use arm64
88+
curl -L -o dkn-compute-node.zip https://github.com/firstbatchxyz/dkn-compute-launcher/releases/latest/download/dkn-compute-launcher-linux-arm64.zip
89+
# for x86_64, use amd64
90+
curl -L -o dkn-compute-node.zip https://github.com/firstbatchxyz/dkn-compute-launcher/releases/latest/download/dkn-compute-launcher-linux-amd64.zip
8591
```
8692

8793
3. Unzip the downloaded file:
@@ -104,7 +110,10 @@ Download the appropriate ZIP file for your system using the commands below or fr
104110
2. Download the ZIP file using a web browser or in PowerShell:
105111

106112
```cmd
107-
Invoke-WebRequest -Uri "https://github.com/firstbatchxyz/dkn-compute-launcher/releases/download/latest/dkn-compute-launcher-windows-amd64.zip" -OutFile "dkn-compute-node.zip"
113+
# for x64, use amd64
114+
Invoke-WebRequest -Uri "https://github.com/firstbatchxyz/dkn-compute-launcher/releases/latest/download/dkn-compute-launcher-windows-amd64.zip" -OutFile "dkn-compute-node.zip"
115+
# for ARM, use arm64
116+
Invoke-WebRequest -Uri "https://github.com/firstbatchxyz/dkn-compute-launcher/releases/latest/download/dkn-compute-launcher-windows-arm64.zip" -OutFile "dkn-compute-node.zip"
108117
```
109118

110119
3. Unzip the downloaded file using File Explorer or in PowerShell:

0 commit comments

Comments
 (0)