Install Kyma CLI

You can easily install Kyma CLI on macOS, Linux, or Windows. To do so, perform the instructions described in the respective section.

  • macOS
  • Linux
  • Windows
  • other

macOS

To install Kyma CLI on macOS, run:

Click to copy
curl -Lo kyma.tar.gz "https://github.com/kyma-project/cli/releases/download/$(curl -s https://api.github.com/repos/kyma-project/cli/releases/latest | grep tag_name | cut -d '"' -f 4)/kyma_Darwin_x86_64.tar.gz" \
&& mkdir kyma-release && tar -C kyma-release -zxvf kyma.tar.gz && chmod +x kyma-release/kyma && sudo mv kyma-release/kyma /usr/local/bin \
&& rm -rf kyma-release kyma.tar.gz

Homebrew

To install Kyma CLI using Homebrew, run:

Click to copy
brew install kyma-cli

If the Homebrew team does not update the Homebrew formula of the CLI within three days of the release, follow this guide to update it manually to the most recent version. For a sample Homebrew Kyma CLI formula version bump, see this PR.