Installing KooCLI in macOS
KooCLI can be run on macOS AMD64 or macOS Arm64. You can install the CLI with one click or in several steps. If you choose step-by-step installation, use the installation command that matches your OS. Run the following command to query the OS used by your host:
echo $HOSTTYPE
If the command output is x86_64, use the download command for AMD64. If the command output is empty, run the following command to check the OS used by your host:
uname -a
If the command output ends with x86_64, use the download command for AMD64. If the command output ends with arm64, use the download command for Arm64.
One-Click Installation
curl -sSL https://eu-west-101-apiexplorer-cli.obs.eu-west-101.myhuaweicloud.eu/cli/latest/hcloud_install.sh -o ./hcloud_install.sh && bash ./hcloud_install.sh
By default, KooCLI is downloaded to the /usr/local/hcloud/ directory. A symbolic link is created for KooCLI in the /usr/local/bin/ directory.
You can modify the file download directory based on the interaction information during command execution. If you do not have sufficient permissions, switch to user root and run the installation command again.
To use the default configuration and skip the interaction, add -y to the end of the command as follows:
curl -sSL https://eu-west-101-apiexplorer-cli.obs.eu-west-101.myhuaweicloud.eu/cli/latest/hcloud_install.sh -o ./hcloud_install.sh && bash ./hcloud_install.sh -y
Step-by-Step Installation
Perform the following steps:
- Run one of the following commands to download KooCLI:
- curl commands
- Download command for AMD64
curl -LO "https://eu-west-101-apiexplorer-cli.obs.eu-west-101.myhuaweicloud.eu/cli/latest/huaweicloud-cli-mac-amd64.tar.gz"
- Download command for Arm64
curl -LO "https://eu-west-101-apiexplorer-cli.obs.eu-west-101.myhuaweicloud.eu/cli/latest/huaweicloud-cli-mac-arm64.tar.gz"
- Download command for AMD64
- wget commands
- Download command for AMD64
wget "https://eu-west-101-apiexplorer-cli.obs.eu-west-101.myhuaweicloud.eu/cli/latest/huaweicloud-cli-mac-amd64.tar.gz" -O huaweicloud-cli-mac-amd64.tar.gz
- Download command for Arm64
wget "https://eu-west-101-apiexplorer-cli.obs.eu-west-101.myhuaweicloud.eu/cli/latest/huaweicloud-cli-mac-arm64.tar.gz" -O huaweicloud-cli-mac-arm64.tar.gz
- Download command for AMD64
- curl commands
- Decompress the tool package.
- Decompression command for AMD64
tar -zxvf huaweicloud-cli-mac-amd64.tar.gz
- Decompression command for Arm64
tar -zxvf huaweicloud-cli-mac-arm64.tar.gz
- Decompression command for AMD64
- (Optional) Create a symbolic link for KooCLI or add its directory to the $PATH variable so that you can use hcloud commands in any directory.
- Create a symbolic link for KooCLI in the /usr/local/bin/ directory.
ln -s $(pwd)/hcloud /usr/local/bin/
After creating a symbolic link in the /usr/local/bin/ directory, you do not need to add the directory of CLI to the $PATH variable.
- Add the directory of KooCLI to the $PATH variable.
export PATH=$PATH:$(pwd)/
- Create a symbolic link for KooCLI in the /usr/local/bin/ directory.
- (Optional) Run the following command to turn on autocomplete:
hcloud auto-complete on
If the following information is displayed, autocomplete is turned on. If the configuration does not take effect, run the bash command as prompted.
hcloud auto-complete on Autocomplete (bash only) turned on. If it does not work, run the `bash` command.
- (Optional) Run the following command to check whether the installation is successful:
hcloud version
If version information similar to the following is displayed, the installation is successful:
hcloud version Current KooCLI version: 3.2.8
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.