Skip to main content

Installation

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

quicktest_install provides convenience 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.1  sh

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

Linux, Windows or Mac OS

If you already have Rust on your system:

cargo install quicktest

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

Linux or Mac OS

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.