Skip to content

Install krateo on Linux

The following methods exist for installing krateo on Linux:

Install krateo binary with curl on Linux

Step 1. Download the latest release with the command:

curl -LO https://github.com/krateoplatformops/krateo/releases/download/v1.3.5/krateo_1.3.5_linux_amd64.tar.gz

Note

  • to download a specific version, replace the {VERSION} with your desired release
  • to download a binary compiled for a arm architecture, replace {ARCH} with arm64
curl -LO https://github.com/krateoplatformops/krateo/releases/download/v{VERSION}/krateo_{VERSION}_linux_{ARCH}.tar.gz

Step 2. Extract the tar.gz archive

tar -xf krateo_1.3.5_linux_amd64.tar.gz

Step 3. Install krateo to the ~/.local/bin directory:

chmod +x krateo
mkdir -p ~/.local/bin
mv ./krateo ~/.local/bin/krateo
# and then append (or prepend) ~/.local/bin to $PATH

Step 4. Test to ensure the version you installed is up-to-date

krateo version

Install using other package management

If you are on Linux and using Homebrew package manager, krateo is available for installation.

brew install krateo
krateo version