@@ -50,7 +50,10 @@ Download the appropriate ZIP file for your system using the commands below or fr
50
50
2 . Download the ZIP file:
51
51
52
52
``` 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
54
57
```
55
58
56
59
3 . Unzip the downloaded file:
@@ -75,13 +78,16 @@ Download the appropriate ZIP file for your system using the commands below or fr
75
78
uname -m
76
79
```
77
80
78
- - If the output is ` x86_64 ` , download the ` amd64 ` version.
79
81
- If it's ` aarch64 ` , download the ` arm64 ` version.
82
+ - If the output is ` x86_64 ` , download the ` amd64 ` version.
80
83
81
84
2 . Download the ZIP file:
82
85
83
86
``` 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
85
91
```
86
92
87
93
3 . Unzip the downloaded file:
@@ -104,7 +110,10 @@ Download the appropriate ZIP file for your system using the commands below or fr
104
110
2 . Download the ZIP file using a web browser or in PowerShell:
105
111
106
112
``` 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"
108
117
```
109
118
110
119
3 . Unzip the downloaded file using File Explorer or in PowerShell:
0 commit comments