3.9 KiB
Installation
Binaries Installation
Linux
Precompiled binary is available at hurl-2.0.1-x86_64-linux.tar.gz:
$ INSTALL_DIR=/tmp
$ curl -silent --location https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl-2.0.1-x86_64-linux.tar.gz | tar xvz -C $INSTALL_DIR
$ export PATH=$INSTALL_DIR/hurl-2.0.1:$PATH
Debian / Ubuntu
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/2.0.1/hurl_2.0.1_amd64.deb
$ sudo apt update && apt install ./hurl_2.0.1_amd64.deb
Arch Linux / Manjaro
hurl-bin
package for Arch Linux and derived distros is available via AUR.
NixOS / Nix
NixOS / Nix package is available on stable channel.
macOS
Precompiled binary is available at hurl-2.0.1-x86_64-macos.tar.gz for x86 CPUs and hurl-2.0.1-arm64-macos.tar.gz for ARM CPUS.
Homebrew
$ brew install hurl
MacPorts
$ sudo port install hurl
FreeBSD
$ sudo pkg install hurl
Windows
Zip File
Hurl can be installed from a standalone zip file hurl-2.0.1-win64.zip. You will need to update your PATH
variable.
Installer
An installer hurl-2.0.1-win64-installer.exe is also available.
Chocolatey
$ choco install hurl
Scoop
$ scoop install hurl
Windows Package Manager
$ winget install hurl
Cargo
If you're a Rust programmer, Hurl can be installed with cargo.
$ cargo install hurl
Docker
$ docker pull ghcr.io/orange-opensource/hurl:latest
npm
$ npm install --save-dev @orangeopensource/hurl
Building From Sources
Hurl sources are available in GitHub.
Build on Linux
Hurl depends on libssl, libcurl and libxml2 native libraries. You will need their development files in your platform.
Debian based distributions
$ apt install -y build-essential pkg-config libssl-dev libcurl4-openssl-dev libxml2-dev
Red Hat based distributions
$ yum install -y pkg-config gcc openssl-devel libxml2-devel
Arch based distributions
$ pacman -Sy --noconfirm pkgconf gcc glibc openssl libxml2
Build on macOS
$ xcode-select --install
$ brew install pkg-config
Hurl is written in Rust. You should install the latest stable release.
$ curl https://sh.rustup.rs -sSf | sh -s -- -y
$ source $HOME/.cargo/env
$ rustc --version
$ cargo --version
Then build hurl:
$ git clone https://github.com/Orange-OpenSource/hurl
$ cd hurl
$ cargo build --release
$ ./target/release/hurl --version
Build on Windows
Please follow the contrib on Windows section.