You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
82
82
83
83
```bash
84
-
# Install
84
+
# Install httpie
85
85
$ brew update
86
86
$ brew install httpie
87
87
```
88
88
89
89
```bash
90
-
# Upgrade
90
+
# Upgrade httpie
91
91
$ brew update
92
92
$ brew upgrade httpie
93
93
```
94
94
95
95
#### MacPorts
96
96
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).
98
98
99
99
```bash
100
-
# Install
100
+
# Install httpie
101
101
$ port selfupdate
102
102
$ port install httpie
103
103
```
104
104
105
105
```bash
106
-
# Upgrade
106
+
# Upgrade httpie
107
107
$ port selfupdate
108
108
$ port upgrade httpie
109
109
```
110
110
111
111
#### Snapcraft (macOS)
112
112
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).
114
114
115
115
```bash
116
-
# Install
116
+
# Install httpie
117
117
$ snap install httpie
118
118
```
119
119
120
120
```bash
121
-
# Upgrade
121
+
# Upgrade httpie
122
122
$ snap refresh httpie
123
123
```
124
124
125
125
#### Spack (macOS)
126
126
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).
128
128
129
129
```bash
130
-
# Install
130
+
# Install httpie
131
131
$ spack install httpie
132
132
```
133
133
134
134
```bash
135
-
# Upgrade
135
+
# Upgrade httpie
136
136
$ spack install httpie
137
137
```
138
138
139
139
### Windows
140
140
141
141
#### Chocolatey
142
142
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).
144
144
145
145
```bash
146
-
# Install
146
+
# Install httpie
147
147
$ choco install httpie
148
148
```
149
149
150
150
```bash
151
-
# Upgrade
151
+
# Upgrade httpie
152
152
$ choco upgrade httpie
153
153
```
154
154
155
155
### Linux
156
156
157
157
#### Snapcraft (Linux)
158
158
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).
160
160
161
161
```bash
162
-
# Install
162
+
# Install httpie
163
163
$ snap install httpie
164
164
```
165
165
166
166
```bash
167
-
# Upgrade
167
+
# Upgrade httpie
168
168
$ snap refresh httpie
169
169
```
170
170
171
171
#### Linuxbrew
172
172
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).
174
174
175
175
```bash
176
-
# Install
176
+
# Install httpie
177
177
$ brew update
178
178
$ brew install httpie
179
179
```
180
180
181
181
```bash
182
-
# Upgrade
182
+
# Upgrade httpie
183
183
$ brew update
184
184
$ brew upgrade httpie
185
185
```
@@ -189,27 +189,27 @@ $ brew upgrade httpie
189
189
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.
190
190
191
191
```bash
192
-
# Install
192
+
# Install httpie
193
193
$ apt update
194
194
$ apt install httpie
195
195
```
196
196
197
197
```bash
198
-
# Upgrade
198
+
# Upgrade httpie
199
199
$ apt update
200
200
$ apt upgrade httpie
201
201
```
202
202
203
203
#### Fedora
204
204
205
205
```bash
206
-
# Install
206
+
# Install httpie
207
207
$ dnf update
208
208
$ dnf install httpie
209
209
```
210
210
211
211
```bash
212
-
# Upgrade
212
+
# Upgrade httpie
213
213
$ dnf update
214
214
$ dnf upgrade httpie
215
215
```
@@ -219,42 +219,42 @@ $ dnf upgrade httpie
219
219
Also works for other RHEL-derived distributions like ClearOS, Oracle Linux, etc.
220
220
221
221
```bash
222
-
# Install
222
+
# Install httpie
223
223
$ yum update
224
224
$ yum install epel-release
225
225
$ yum install httpie
226
226
```
227
227
228
228
```bash
229
-
# Upgrade
229
+
# Upgrade httpie
230
230
$ yum update
231
231
$ yum upgrade httpie
232
232
```
233
233
234
234
#### Alpine Linux
235
235
236
236
```bash
237
-
# Install
237
+
# Install httpie
238
238
$ apk update
239
239
$ apk add httpie
240
240
```
241
241
242
242
```bash
243
-
# Upgrade
243
+
# Upgrade httpie
244
244
$ apk update
245
245
$ apk add --upgrade httpie
246
246
```
247
247
248
248
#### Gentoo
249
249
250
250
```bash
251
-
# Install
251
+
# Install httpie
252
252
$ emerge --sync
253
253
$ emerge httpie
254
254
```
255
255
256
256
```bash
257
-
# Upgrade
257
+
# Upgrade httpie
258
258
$ emerge --sync
259
259
$ emerge --update httpie
260
260
```
@@ -264,40 +264,40 @@ $ emerge --update httpie
264
264
Also works for other Arch-derived distributions like ArcoLinux, EndeavourOS, Artix Linux, etc.
265
265
266
266
```bash
267
-
# Install
267
+
# Install httpie
268
268
$ pacman -Sy httpie
269
269
```
270
270
271
271
```bash
272
-
# Upgrade
272
+
# Upgrade httpie
273
273
$ pacman -Syu httpie
274
274
```
275
275
276
276
#### Void Linux
277
277
278
278
```bash
279
-
# Install
279
+
# Install httpie
280
280
$ xbps-install -Su
281
281
$ xbps-install -S httpie
282
282
```
283
283
284
284
```bash
285
-
# Upgrade
285
+
# Upgrade httpie
286
286
$ xbps-install -Su
287
287
$ xbps-install -Su httpie
288
288
```
289
289
290
290
#### Spack (Linux)
291
291
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).
0 commit comments