Installation
kiln is distributed as a single binary with no external dependencies. Choose your preferred installation method below.
Binary Releases
Section titled “Binary Releases”Download pre-built binaries for your platform from the releases page.
AMD64
# Download and extract the latest releasecurl -L https://github.com/Thunderbottom/kiln/releases/download/v1.0.3/kiln_1.0.3_linux_amd64.tar.gztar xzf kiln_1.0.3_linux_amd64.tar.gz
# Install to system PATHchmod +x kilnsudo mv kiln /usr/local/bin/
# Verify installationkiln --versionARM64
# Download and extract the latest releasecurl -L https://github.com/Thunderbottom/kiln/releases/download/v1.0.3/kiln_1.0.3_linux_arm64.tar.gztar xzf kiln_1.0.3_linux_arm64.tar.gz
# Install to system PATHchmod +x kilnsudo mv kiln /usr/local/bin/
# Verify installationkiln --versionApple Silicon (M1/M2/M3)
# Download and extract the latest releasecurl -L https://github.com/Thunderbottom/kiln/releases/download/v1.0.3/kiln_1.0.3_darwin_arm64.tar.gztar xzf kiln_1.0.3_darwin_arm64.tar.gz
# Install to system PATHchmod +x kilnsudo mv kiln /usr/local/bin/
# Verify installationkiln --versionIntel
# Download and extract the latest releasecurl -L https://github.com/Thunderbottom/kiln/releases/download/v1.0.3/kiln_1.0.3_darwin_amd64.tar.gztar xzf kiln_1.0.3_darwin_amd64.tar.gz
# Install to system PATHchmod +x kilnsudo mv kiln /usr/local/bin/
# Verify installationkiln --version- Download the latest release: kiln_1.0.3_windows_amd64.tar.gz
- Extract
kiln.exeusing Windows Explorer or 7-Zip - Place it in a directory in your
PATH(e.g.,C:\Program Files\kiln\) - Open Command Prompt or PowerShell and run
kiln --version
Add to PATH:
- Windows 10/11: Settings → System → About → Advanced system settings
- Click "Environment Variables" → Edit PATH variable
- Add the directory containing
kiln.exe
Install from Source
Section titled “Install from Source”If you have Go 1.23 or later installed:
go install github.com/thunderbottom/kiln@latestThis installs the latest release to your $GOPATH/bin directory.
Package Managers
Section titled “Package Managers”Package manager support:
nix run github:thunderbottom/kilnyay -S kilnbrew install thunderbottom/tap/kilnDevelopment Build
Section titled “Development Build”To build from the development branch:
git clone https://github.com/thunderbottom/kiln.gitcd kilngo mod downloadmake build
# Binary will be available at ./bin/kilnVerification
Section titled “Verification”After installation, verify kiln is working:
# Check versionkiln --version
# View helpkiln --help
# Test key generationkiln init key --helpNext Steps
Section titled “Next Steps”Ready to get started? Initialize your first kiln project:
Quick Start Guide Learn Core Concepts