-
Verify that you have Go 1.26+ installed
$ go version
If
gois not installed, follow instructions on the Go website. -
Clone this repository
$ git clone https://github.com/qubernetic/copia-cli.git $ cd copia-cli -
Build and install
$ make build $ sudo cp bin/copia-cli /usr/local/bin/
-
Verify installation
$ copia-cli --version
The Makefile supports cross-compilation via Go environment variables:
# Linux ARM64
$ GOOS=linux GOARCH=arm64 make build
# macOS ARM64
$ GOOS=darwin GOARCH=arm64 make build
# Windows AMD64
$ GOOS=windows GOARCH=amd64 make build