Kubiya LogoKubiya Developer Docs

Installation

How to install the Kubiya CLI on various operating systems.

Installation

Install the Kubiya CLI on your system using one of the methods below.

Using Homebrew

brew tap kubiyabot/kubiya
brew install kubiya

Manual Download

Download the latest macOS binary from the GitHub Releases page.

# Make it executable
chmod +x ./kubiya
 
# Move to system path
sudo mv ./kubiya /usr/local/bin/kubiya

Verify Installation

After installing, verify the installation by checking the version:

kubiya --version

You should see output similar to:

Kubiya CLI v1.0.14

Setup Environment

Set up authentication

Authenticate with your Kubiya instance by setting your API token:

# Set up with your API key
export KUBIYA_API_KEY=YOUR_API_KEY

For details on how to obtain your API token, see the API Keys Tutorial.

Verify installation

Verify that your CLI can connect to Kubiya:

kubiya version

For more configuration options using environment variables, refer to the Configuration guide.

You can add the export command to your shell profile (like ~/.bashrc or ~/.zshrc) to make the authentication persistent across terminal sessions.

On this page