Skip to content

Installation

kiln is distributed as a single binary with no external dependencies. Choose your preferred installation method below.

Download pre-built binaries for your platform from the releases page.

AMD64

Terminal window
# Download and extract the latest release
curl -L https://github.com/Thunderbottom/kiln/releases/download/v1.0.3/kiln_1.0.3_linux_amd64.tar.gz
tar xzf kiln_1.0.3_linux_amd64.tar.gz
# Install to system PATH
chmod +x kiln
sudo mv kiln /usr/local/bin/
# Verify installation
kiln --version

ARM64

Terminal window
# Download and extract the latest release
curl -L https://github.com/Thunderbottom/kiln/releases/download/v1.0.3/kiln_1.0.3_linux_arm64.tar.gz
tar xzf kiln_1.0.3_linux_arm64.tar.gz
# Install to system PATH
chmod +x kiln
sudo mv kiln /usr/local/bin/
# Verify installation
kiln --version

If you have Go 1.23 or later installed:

Terminal window
go install github.com/thunderbottom/kiln@latest

This installs the latest release to your $GOPATH/bin directory.

Package manager support:

Terminal window
nix run github:thunderbottom/kiln

To build from the development branch:

Terminal window
git clone https://github.com/thunderbottom/kiln.git
cd kiln
go mod download
make build
# Binary will be available at ./bin/kiln

After installation, verify kiln is working:

Terminal window
# Check version
kiln --version
# View help
kiln --help
# Test key generation
kiln init key --help

Ready to get started? Initialize your first kiln project:

Quick Start Guide Learn Core Concepts