Skip to main content

Installation

Quick Test CLI works on Linux, Windows, and macOS. It is a single binary executable with no external dependencies.

quicktest_install provides convenient scripts to download and install the binary.

Linux

Using Shell:

curl -fsSL https://luchobazz.github.io/quicktest/install/install.sh | sh

Please open a new terminal, or run the following in the existing one: source ~/.bashrc or source ~/.zshrc as appropriate.

Windows

Using PowerShell:

iwr https://luchobazz.github.io/quicktest/install/install.ps1 -useb | iex

Mac OS

Using Shell:

curl -fsSL https://luchobazz.github.io/quicktest/install/install.sh | v=1.0.10  sh

Please open a new terminal, or run the following in the existing one: source ~/.zshrc or source ~/.bashrc as appropriate.

Linux, Windows, or macOS

If you already have Rust installed on your system:

cargo install quicktest

If you don't have Rust installed on your system, the following command will install both Rust and the CLI:

Linux or macOS

Shell:

curl https://sh.rustup.rs -sSf | sh  && cargo install quicktest

Known Issues

unzip is required

The program unzip is a requirement for the Shell installer.

$ curl -fsSL https://luchobazz.github.io/quicktest/install/install.sh | sh
Error: unzip is required to install Quick Test CLI (see: https://luchobazz.github.io/quicktest/docs/getting-started/installation#unzip-is-required).

When does this issue occur?

During the install.sh process, unzip is used to extract the zip archive.

How can this issue be fixed?

You can install unzip via brew install unzip on macOS or apt-get install unzip -y on Linux.