docs
// Getting Started

Downloads

Every Erebine binary ships through GitHub Releases on Erebine/binaries. The links on this page always resolve to the latest stable release: the erectl client and the EIM and EEM agents, as direct downloads and Debian and RPM packages.

channel
releases/latest (stable)
platforms
Linux (x86_64)
license
MIT

What Ships

Static binaries are named <binary>-<OS>-<ARCH>, matching uname -s and uname -m on the target host, so a Linux host can always fetch its own build:

bash
curl -fLO "https://github.com/Erebine/binaries/releases/latest/download/erectl-$(uname -s)-$(uname -m)"
BinaryWhat it isLinux
erectlCommand-line client for the API and platform managementx86_64
erebine-eim-agentEIM inference agentx86_64
erebine-eem-agentEEM execution agentx86_64

macOS

Releases do not currently include macOS builds; every published artifact targets Linux x86_64.

Linux

Debian / Ubuntu (.deb)

Packages declare their library dependencies and install systemd units for the agents. Download from Erebine/deb releases:

bash
sudo apt install -y ./erectl_*_amd64.deb sudo apt install -y ./erebine-eim-agent_*_amd64.deb ./erebine-eem-agent_*_amd64.deb

RHEL / Rocky / Fedora (.rpm)

The agent packages depend on zeromq and libsodium, which ship in EPEL on RHEL and friends. Download from Erebine/rpm releases:

bash
sudo dnf install -y epel-release sudo dnf install -y ./erectl-*.x86_64.rpm sudo dnf install -y ./erebine-eim-agent-*.x86_64.rpm ./erebine-eem-agent-*.x86_64.rpm

For both package families the agents install disabled: set the join key in /etc/erebine/eim-agent.env or /etc/erebine/eem-agent.env, then systemctl enable --now erebine-eim-agent (or erebine-eem-agent).

Static binaries

bash
curl -fLO https://github.com/Erebine/binaries/releases/latest/download/erectl-Linux-x86_64 chmod +x erectl-Linux-x86_64 sudo install erectl-Linux-x86_64 /usr/local/bin/erectl

The same pattern works for erebine-eim-agent-Linux-x86_64 and erebine-eem-agent-Linux-x86_64. The binaries are statically linked against the Swift runtime; the agents additionally need libzmq, libsodium, and libzstd from your distribution.

Containers

Prefer containers for GPU inference hosts. Images and compose files live in Erebine/container-agents and are documented on the EIM Deployment page.