Skip to content
Live $300 credit for new accounts Valid for 60 days from account creation Get started →

Installation

The ZCP CLI (zcp) is the official command-line interface for ZSoftly Public Cloud. It lets you manage VMs, networks, storage, Kubernetes, and more from your terminal.

Current version: v0.0.9
GitHub: https://github.com/zsoftly/zcp-cli

curl -fsSL https://raw.githubusercontent.com/zsoftly/zcp-cli/main/scripts/install.sh | bash

After installation, verify:

zcp version
irm https://raw.githubusercontent.com/zsoftly/zcp-cli/main/scripts/install.ps1 | iex

Download the binary for your platform from the GitHub releases page:

PlatformArchitectureBinary
Linuxamd64zcp-linux-amd64
Linuxarm64zcp-linux-arm64
macOSamd64zcp-darwin-amd64
macOSarm64 (Apple Silicon)zcp-darwin-arm64
Windowsamd64zcp-windows-amd64.exe

Make the binary executable (Linux/macOS):

chmod +x zcp-linux-amd64
sudo mv zcp-linux-amd64 /usr/local/bin/zcp

Requires Go 1.26+:

git clone https://github.com/zsoftly/zcp-cli
cd zcp-cli
make build
sudo mv bin/zcp /usr/local/bin/zcp
# Bash
zcp completion bash > /etc/bash_completion.d/zcp
# Zsh
zcp completion zsh > "${fpath[1]}/_zcp"
# Fish
zcp completion fish > ~/.config/fish/completions/zcp.fish
# PowerShell
zcp completion powershell >> $PROFILE

See also: Quickstart, Configuration