Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.23 KB

File metadata and controls

55 lines (36 loc) · 1.23 KB

Installing copia-cli on Linux

Recommended (Official)

Homebrew

brew install qubernetic/tap/copia-cli

To upgrade:

brew upgrade qubernetic/tap/copia-cli

Debian/Ubuntu (.deb)

Download the .deb package from GitHub Releases:

# Download the latest .deb (amd64)
curl -LO https://github.com/qubernetic/copia-cli/releases/latest/download/copia-cli_*_linux_amd64.deb

# Install
sudo dpkg -i copia-cli_*_linux_amd64.deb

Fedora/RHEL (.rpm)

Download the .rpm package from GitHub Releases:

# Download the latest .rpm (amd64)
curl -LO https://github.com/qubernetic/copia-cli/releases/latest/download/copia-cli_*_linux_amd64.rpm

# Install
sudo dnf install -y copia-cli_*_linux_amd64.rpm

Precompiled binaries

Copia CLI releases contain precompiled binaries for amd64, arm64, 386, and armv6 architectures.

# Download and extract
tar xzf copia-cli_*_linux_amd64.tar.gz

# Move to PATH
sudo mv copia-cli /usr/local/bin/

Building from source

See install_source.md.