A single 9 MB binary. Download, unzip, and start transforming documents.
Download the latest release for your platform from the GitHub Releases page:
lambda-macos.zip from Releasescd ~/Downloads/lambda # or wherever you unzipped
./lambda view # verify it works
Tip: Add the directory to your PATH for global access: export PATH="$PATH:~/lambda"
lambda-linux.tar.gz from Releasestar -xzf lambda-linux.tar.gz
cd lambda
./lambda view
Tested on Ubuntu 20.04+. Requires basic X11/Wayland for the viewer.
lambda-windows.zip from ReleasesC:\lambda)cd C:\lambda
lambda.exe view
Tip: Add to your system PATH for convenience.
Clone the repository and build with the included scripts:
git clone https://github.com/henry-luo/lambda.git
cd lambda
# Install dependencies (pick your platform)
./setup-mac-deps.sh # macOS
./setup-linux-deps.sh # Linux
./setup-windows-deps.sh # Windows (MSYS2)
# Build
make build # Debug build (fast iteration)
make release # Optimized release build
make test # Run tests
See the README for detailed build instructions.
After installing, run these commands to verify everything works:
# Start the interactive REPL
lambda
# Open the built-in viewer
lambda view
# Show version / help
lambda --help