Download Geblang

Geblang ships as a single self-contained binary. Grab a pre-built release for your platform, or build from source.

Pre-built binaries

Download the archive for your platform from the latest release, then follow the install steps below.

Windows

VS Code extension

Current release: 1.29.2. Verify downloads against checksums.txt in the release.

Install

On Linux and macOS, extract the archive and move geblang onto your PATH. Verify your download against checksums.txt in the same release.

tar -xzf geblang_<version>_linux_amd64.tar.gz
sudo mv geblang /usr/local/bin/
geblang --version

On Windows, unzip the archive and add the folder containing geblang.exe to your PATH.

macOS binaries are not yet notarized, so the first run may be blocked by Gatekeeper; allow it under System Settings, or clear the quarantine attribute with xattr -d com.apple.quarantine ./geblang.

Build from source

You need Go 1.26 or newer. Clone the repository, run make build, and move the binary onto your PATH:

git clone https://github.com/dwgebler/geblang
cd geblang
make build              # produces ./geblang

No Go toolchain? make docker-build builds inside a container.

Editor support

A VS Code extension ships with the toolchain for syntax highlighting, completion, hover docs, and step debugging.