Installation

A prebuilt, checksum-verified esrun binary is downloaded and installed automatically.

Install

shTerminal
curl -fsSL https://raw.githubusercontent.com/Open-Tech-Foundation/ES-Runtime/main/install.sh | bash
powershellPowerShell
irm https://raw.githubusercontent.com/Open-Tech-Foundation/ES-Runtime/main/install.ps1 | iex

Prefer to build from source? See the README.

Upgrade

esrun upgrade updates the binary in place — no reinstall needed.

Shell
# Built in — downloads the latest release and replaces the binary.
esrun upgrade

Uninstall

Delete the install directory and remove it from your PATH.

Shell
# Linux / macOS — remove the install dir, then drop the PATH line from your shell profile.
rm -rf "$HOME/.esrun"
POWERSHELL
# Windows (PowerShell) — remove the install dir, then remove it from your user PATH.
Remove-Item -Recurse -Force "$HOME\.esrun"
Last updated on
Edit this page