Installation

Get EZ installed on your system.

No dependencies required. Download the latest release for your platform.

macOS

cd ~/Downloads
tar xzf ez-darwin-arm64.tar.gz   # or ez-darwin-amd64.tar.gz for Intel
sudo mv ez /usr/local/bin/

Linux

cd ~/Downloads
tar xzf ez-linux-amd64.tar.gz   # or ez-linux-arm64.tar.gz for ARM
sudo mv ez /usr/local/bin/

Windows (PowerShell)

cd ~\Downloads
Expand-Archive ez-windows-amd64.zip -DestinationPath C:\ez
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\ez", "User")
# Restart terminal

2. Clone & Install (Requires Go 1.23.1+)

git clone https://github.com/SchoolyB/EZ.git
cd EZ
make install  # may require sudo permissions

3. Build from Source (Requires Go 1.23.1+)

git clone https://github.com/SchoolyB/EZ.git
cd EZ
make build
./ez version

Verify Installation

Check that EZ is installed correctly:

ez version

Need to remove EZ? See the uninstall guide.