Installation#
Install Katalyst with a release binary, Go, or a local source build.
Release binary (recommended)#
Use the install script to fetch the latest release for your OS and architecture:
curl -fsSL https://raw.githubusercontent.com/abegong/katalyst/main/scripts/install.sh | shGo install#
If you already have Go (1.25+), install directly from the module:
go install github.com/abegong/katalyst@latestRelease archive names#
Published archives follow these patterns:
katalyst_<version>_<os>_<arch>.tar.gz
katalyst_<version>_windows_<arch>.zipBuild from source#
Build from source when you are developing Katalyst itself:
git clone https://github.com/abegong/katalyst
cd katalyst
make buildFor contributor workflows and pre-push checks, see How to contribute.