Prerequisities
Before installing cldkctl, make sure that your system meets the basic requirements. The cldkctl tool requires yq, a lightweight command-line utility used to process YAML files. Please follow the installation steps below according to your operating system.
Required Dependency
You can install it by following one of the three methods below based on your operating system.
On Windows
You can install yq easily using Chocolatey, a Windows package manager. Open Command Prompt or PowerShell as Administrator, then run the following command.
choco install yqOn macOS
If you are using macOS, install yq with Homebrew by running the command below.
brew install yqOn Linux
For Linux users, you can install yq directly from the official GitHub repository. Run the following commands
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yqsudo chmod +x /usr/local/bin/yqVerify to Install cldkctl
After installing yq, you can verify that it was successfully installed by checking its version. Run the following command in your terminal.
yq --versionIf installed correctly, the terminal will display the yq version number.
Last updated
