Skip to content

Install Iter8 CLI

Install the latest stable release of the Iter8 CLI using brew as follows.

brew tap iter8-tools/iter8
brew install iter8
Install a specific version

You can install the Iter8 CLI with specific major and minor version numbers. For example, the following command installs the release of the Iter8 CLI with major 0 and minor 9.

brew tap iter8-tools/iter8
brew install iter8@0.9

You can replace v0.9.0 with any desired Iter8 release tag.

wget https://github.com/iter8-tools/iter8/releases/download/v0.9.0/iter8-darwin-amd64.tar.gz
tar -xvf iter8-darwin-amd64.tar.gz
Move darwin-amd64/iter8 to any directory in your PATH.

wget https://github.com/iter8-tools/iter8/releases/download/v0.9.0/iter8-linux-amd64.tar.gz
tar -xvf iter8-linux-amd64.tar.gz
Move linux-amd64/iter8 to any directory in your PATH.

wget https://github.com/iter8-tools/iter8/releases/download/v0.9.0/iter8-linux-386.tar.gz
tar -xvf iter8-linux-386.tar.gz
Move linux-386/iter8 to any directory in your PATH.

wget https://github.com/iter8-tools/iter8/releases/download/v0.9.0/iter8-windows-amd64.tar.gz
tar -xvf iter8-windows-amd64.tar.gz
Move windows-amd64/iter8.exe to any directory in your PATH.

Go 1.17+ is a pre-requisite. Replace v0.9.0 with any desired Iter8 release tag.

export TAG=v0.9.0
https://github.com/iter8-tools/iter8.git?ref=${TAG}
cd iter8
make install

You can replace v0.9.0 with any desired Iter8 release tag.

go install github.com/iter8-tools/iter8@v0.9.0
You can now run iter8 (from your gopath bin/ directory)

Back to top