Install¶
kata is a single Go binary. It has no runtime service dependency beyond the daemon it starts itself, and it stores data locally in SQLite.
Requirements¶
Install Go 1.26 or later from https://go.dev/dl/.
Pre-built release binaries are not published yet. Install from source with
go install or build from a clone.
Install with go install¶
Go writes the binary to $(go env GOBIN) when set, otherwise to
$(go env GOPATH)/bin. Common defaults are ~/go/bin on Unix and
%USERPROFILE%\go\bin on Windows. Put that directory on PATH.
Check the install:
Build from a clone¶
On macOS or Linux:
make install honors GOBIN and defaults to ~/.local/bin:
On Windows, PowerShell or cmd.exe:
Move kata.exe to a directory on PATH.
Development install¶
The main checks are:
Federation has additional coverage:
Documentation tooling¶
This site is built with Zensical. Install the docs toolchain into a local virtual environment:
Build or preview the site:
make docs-check runs the repository's docs structure check and then runs a
strict Zensical build when Zensical is installed.