Skip to main content

Installation

Download Pre-Built Binary

Download the latest release for your platform from the GitHub Releases page.

macOS

# Apple Silicon
curl -sL https://github.com/entropy8-io/entryguard-io-cli/releases/latest/download/eg_darwin_arm64.tar.gz | tar xz
sudo mv eg /usr/local/bin/

# Intel
curl -sL https://github.com/entropy8-io/entryguard-io-cli/releases/latest/download/eg_darwin_amd64.tar.gz | tar xz
sudo mv eg /usr/local/bin/

Linux

# x86_64
curl -sL https://github.com/entropy8-io/entryguard-io-cli/releases/latest/download/eg_linux_amd64.tar.gz | tar xz
sudo mv eg /usr/local/bin/

# ARM64
curl -sL https://github.com/entropy8-io/entryguard-io-cli/releases/latest/download/eg_linux_arm64.tar.gz | tar xz
sudo mv eg /usr/local/bin/

Windows

Download eg_windows_amd64.zip from the releases page, extract, and add eg.exe to your PATH.

Build from Source

Requires Go 1.22+.

git clone https://github.com/entropy8-io/entryguard-io-cli.git
cd entryguard-io-cli
make build
sudo mv eg /usr/local/bin/

Verify Installation

eg --help

You should see the list of available commands.

Next Steps