Skip to content

Commit 7d418ae

Browse files
committed
Auto-update installation instructions in the docs
1 parent 459cdfc commit 7d418ae

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

docs/README.md

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ Do not edit here, but in docs/installation/.
6363
Please make sure you have Python 3.6 or newer (`python --version`).
6464

6565
```bash
66-
# Install
66+
# Install httpie
6767
$ python -m pip install --upgrade pip wheel
6868
$ python -m pip install httpie
6969
```
7070

7171
```bash
72-
# Upgrade
72+
# Upgrade httpie
7373
$ python -m pip install --upgrade pip wheel
7474
$ python -m pip install --upgrade httpie
7575
```
@@ -78,108 +78,108 @@ $ python -m pip install --upgrade httpie
7878

7979
#### Homebrew
8080

81-
To install [Homebrew](https://brew.sh/) follow [installation instructions](https://docs.brew.sh/Installation).
81+
To install [Homebrew](https://brew.sh/), see [its installation](https://docs.brew.sh/Installation).
8282

8383
```bash
84-
# Install
84+
# Install httpie
8585
$ brew update
8686
$ brew install httpie
8787
```
8888

8989
```bash
90-
# Upgrade
90+
# Upgrade httpie
9191
$ brew update
9292
$ brew upgrade httpie
9393
```
9494

9595
#### MacPorts
9696

97-
To install [MacPorts](https://www.macports.org/) follow [installation instructions](https://www.macports.org/install.php).
97+
To install [MacPorts](https://www.macports.org/), see [its installation](https://www.macports.org/install.php).
9898

9999
```bash
100-
# Install
100+
# Install httpie
101101
$ port selfupdate
102102
$ port install httpie
103103
```
104104

105105
```bash
106-
# Upgrade
106+
# Upgrade httpie
107107
$ port selfupdate
108108
$ port upgrade httpie
109109
```
110110

111111
#### Snapcraft (macOS)
112112

113-
To install [Snapcraft](https://snapcraft.io/) follow [installation instructions](https://snapcraft.io/docs/installing-snapd).
113+
To install [Snapcraft](https://snapcraft.io/), see [its installation](https://snapcraft.io/docs/installing-snapd).
114114

115115
```bash
116-
# Install
116+
# Install httpie
117117
$ snap install httpie
118118
```
119119

120120
```bash
121-
# Upgrade
121+
# Upgrade httpie
122122
$ snap refresh httpie
123123
```
124124

125125
#### Spack (macOS)
126126

127-
To install [Spack](https://spack.readthedocs.io/en/latest/index.html) follow [installation instructions](https://spack.readthedocs.io/en/latest/getting_started.html#installation).
127+
To install [Spack](https://spack.readthedocs.io/en/latest/index.html), see [its installation](https://spack.readthedocs.io/en/latest/getting_started.html#installation).
128128

129129
```bash
130-
# Install
130+
# Install httpie
131131
$ spack install httpie
132132
```
133133

134134
```bash
135-
# Upgrade
135+
# Upgrade httpie
136136
$ spack install httpie
137137
```
138138

139139
### Windows
140140

141141
#### Chocolatey
142142

143-
To install [Chocolatey](https://chocolatey.org/) follow [installation instructions](https://chocolatey.org/install).
143+
To install [Chocolatey](https://chocolatey.org/), see [its installation](https://chocolatey.org/install).
144144

145145
```bash
146-
# Install
146+
# Install httpie
147147
$ choco install httpie
148148
```
149149

150150
```bash
151-
# Upgrade
151+
# Upgrade httpie
152152
$ choco upgrade httpie
153153
```
154154

155155
### Linux
156156

157157
#### Snapcraft (Linux)
158158

159-
To install [Snapcraft](https://snapcraft.io/) follow [installation instructions](https://snapcraft.io/docs/installing-snapd).
159+
To install [Snapcraft](https://snapcraft.io/), see [its installation](https://snapcraft.io/docs/installing-snapd).
160160

161161
```bash
162-
# Install
162+
# Install httpie
163163
$ snap install httpie
164164
```
165165

166166
```bash
167-
# Upgrade
167+
# Upgrade httpie
168168
$ snap refresh httpie
169169
```
170170

171171
#### Linuxbrew
172172

173-
To install [Linuxbrew](https://docs.brew.sh/Homebrew-on-Linux) follow [installation instructions](https://docs.brew.sh/Homebrew-on-Linux#install).
173+
To install [Linuxbrew](https://docs.brew.sh/Homebrew-on-Linux), see [its installation](https://docs.brew.sh/Homebrew-on-Linux#install).
174174

175175
```bash
176-
# Install
176+
# Install httpie
177177
$ brew update
178178
$ brew install httpie
179179
```
180180

181181
```bash
182-
# Upgrade
182+
# Upgrade httpie
183183
$ brew update
184184
$ brew upgrade httpie
185185
```
@@ -189,27 +189,27 @@ $ brew upgrade httpie
189189
Also works for other Debian-derived distributions like MX Linux, Linux Mint, deepin, Pop!_OS, KDE neon, Zorin OS, elementary OS, Kubuntu, Devuan, Linux Lite, Peppermint OS, Lubuntu, antiX, Xubuntu, etc.
190190

191191
```bash
192-
# Install
192+
# Install httpie
193193
$ apt update
194194
$ apt install httpie
195195
```
196196

197197
```bash
198-
# Upgrade
198+
# Upgrade httpie
199199
$ apt update
200200
$ apt upgrade httpie
201201
```
202202

203203
#### Fedora
204204

205205
```bash
206-
# Install
206+
# Install httpie
207207
$ dnf update
208208
$ dnf install httpie
209209
```
210210

211211
```bash
212-
# Upgrade
212+
# Upgrade httpie
213213
$ dnf update
214214
$ dnf upgrade httpie
215215
```
@@ -219,42 +219,42 @@ $ dnf upgrade httpie
219219
Also works for other RHEL-derived distributions like ClearOS, Oracle Linux, etc.
220220

221221
```bash
222-
# Install
222+
# Install httpie
223223
$ yum update
224224
$ yum install epel-release
225225
$ yum install httpie
226226
```
227227

228228
```bash
229-
# Upgrade
229+
# Upgrade httpie
230230
$ yum update
231231
$ yum upgrade httpie
232232
```
233233

234234
#### Alpine Linux
235235

236236
```bash
237-
# Install
237+
# Install httpie
238238
$ apk update
239239
$ apk add httpie
240240
```
241241

242242
```bash
243-
# Upgrade
243+
# Upgrade httpie
244244
$ apk update
245245
$ apk add --upgrade httpie
246246
```
247247

248248
#### Gentoo
249249

250250
```bash
251-
# Install
251+
# Install httpie
252252
$ emerge --sync
253253
$ emerge httpie
254254
```
255255

256256
```bash
257-
# Upgrade
257+
# Upgrade httpie
258258
$ emerge --sync
259259
$ emerge --update httpie
260260
```
@@ -264,40 +264,40 @@ $ emerge --update httpie
264264
Also works for other Arch-derived distributions like ArcoLinux, EndeavourOS, Artix Linux, etc.
265265

266266
```bash
267-
# Install
267+
# Install httpie
268268
$ pacman -Sy httpie
269269
```
270270

271271
```bash
272-
# Upgrade
272+
# Upgrade httpie
273273
$ pacman -Syu httpie
274274
```
275275

276276
#### Void Linux
277277

278278
```bash
279-
# Install
279+
# Install httpie
280280
$ xbps-install -Su
281281
$ xbps-install -S httpie
282282
```
283283

284284
```bash
285-
# Upgrade
285+
# Upgrade httpie
286286
$ xbps-install -Su
287287
$ xbps-install -Su httpie
288288
```
289289

290290
#### Spack (Linux)
291291

292-
To install [Spack](https://spack.readthedocs.io/en/latest/index.html) follow [installation instructions](https://spack.readthedocs.io/en/latest/getting_started.html#installation).
292+
To install [Spack](https://spack.readthedocs.io/en/latest/index.html), see [its installation](https://spack.readthedocs.io/en/latest/getting_started.html#installation).
293293

294294
```bash
295-
# Install
295+
# Install httpie
296296
$ spack install httpie
297297
```
298298

299299
```bash
300-
# Upgrade
300+
# Upgrade httpie
301301
$ spack install httpie
302302
```
303303

@@ -306,12 +306,12 @@ $ spack install httpie
306306
#### FreshPorts
307307

308308
```bash
309-
# Install
309+
# Install httpie
310310
$ pkg install www/py-httpie
311311
```
312312

313313
```bash
314-
# Upgrade
314+
# Upgrade httpie
315315
$ pkg upgrade www/py-httpie
316316
```
317317

0 commit comments

Comments
 (0)