install httpie linux code example

Example 1: install httpie linux

# Debian, Ubuntu, etc.
sudo apt install httpie

# Fedora
dnf install httpie

# CentOS, RHEL, ...
yum install httpie

# Arch Linux
pacman -S httpie

Example 2: httpie on windows

pip install --upgrade pip setuptools pip install --upgrade httpie

Example 3: post with httpie

echo '{"example": "exampleData"}' | http POST https://addressToPost.com/post
// OR
http POST https://addressToPost.com/post example=exampleData
// Both work the same way

Example 4: httpie on windows

python -m pip install --upgrade pip

Tags:

Php Example