Skip to content

Commit 1168749

Browse files
committed
Revise README.md to clarify installation instructions for different architectures
- Updated Linux, macOS, and Windows sections to specify AMD64 and ARM64 architectures for clearer guidance on downloading and installing pctl. - Enhanced formatting for better readability and consistency across installation instructions.
1 parent 0a0fd2b commit 1168749

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,39 +142,40 @@ When you run `pctl deploy`, it will:
142142

143143
Download the latest release for your platform from [GitHub Releases](https://github.com/deviantony/pctl/releases/latest):
144144

145-
### Linux
145+
### Linux AMD64
146146
```bash
147-
# AMD64
148147
wget https://github.com/deviantony/pctl/releases/latest/download/pctl_1.1.1_linux_amd64.tar.gz
149148
tar -xzf pctl_1.1.1_linux_amd64.tar.gz
150149
chmod +x pctl
151150
sudo mv pctl /usr/local/bin/
151+
```
152152

153-
# ARM64
153+
### Linux ARM64
154+
```bash
154155
wget https://github.com/deviantony/pctl/releases/latest/download/pctl_1.1.1_linux_arm64.tar.gz
155156
tar -xzf pctl_1.1.1_linux_arm64.tar.gz
156157
chmod +x pctl
157158
sudo mv pctl /usr/local/bin/
158159
```
159160

160-
### macOS
161+
### macOS AMD64
161162
```bash
162-
# AMD64
163163
wget https://github.com/deviantony/pctl/releases/latest/download/pctl_1.1.1_darwin_amd64.tar.gz
164164
tar -xzf pctl_1.1.1_darwin_amd64.tar.gz
165165
chmod +x pctl
166166
sudo mv pctl /usr/local/bin/
167+
```
167168

168-
# ARM64 (Apple Silicon)
169+
### macOS ARM64 (Apple Silicon)
170+
```bash
169171
wget https://github.com/deviantony/pctl/releases/latest/download/pctl_1.1.1_darwin_arm64.tar.gz
170172
tar -xzf pctl_1.1.1_darwin_arm64.tar.gz
171173
chmod +x pctl
172174
sudo mv pctl /usr/local/bin/
173175
```
174176

175-
### Windows
177+
### Windows AMD64
176178
```bash
177-
# AMD64
178179
wget https://github.com/deviantony/pctl/releases/latest/download/pctl_1.1.1_windows_amd64.zip
179180
# Extract the zip file and move pctl.exe to your PATH
180181
```

0 commit comments

Comments
 (0)