Install Bakin
Install the current release candidate:
curl -fsSL https://raw.githubusercontent.com/markhayden/bakin/main/install.sh | BAKIN_VERSION=v0.0.1-rc.8 bashThe install script picks the right binary for your machine, verifies the SHA-256, and installs it as bakin. The BAKIN_VERSION pin is temporary while the public release is still a release candidate; update it when the live stable release is published.
That’s the whole install, plus one PATH check if your shell cannot find it.
Supported
Section titled “Supported”- macOS · Apple Silicon
- Linux · x64
- Linux · arm64
Intel Macs and Windows aren’t in the release matrix yet. Build from source if you need them.
Confirm it worked
Section titled “Confirm it worked”bakin versionbakin --helpThe install script lands in /usr/local/bin, or ~/.local/bin if that’s not writable. If it landed in ~/.local/bin, make sure that directory is on your PATH. Otherwise the shell won’t find bakin and the install will look broken when it isn’t.
If bakin: command not found, add this to your shell profile (~/.zshrc, ~/.bashrc, or equivalent):
export PATH="$HOME/.local/bin:$PATH"Advanced
Section titled “Advanced”Release assets
Section titled “Release assets”Each release publishes the platform binaries plus a checksums.txt with SHA-256 sums.
| Platform | Asset |
|---|---|
| macOS (Apple Silicon) | bakin-darwin-arm64 |
| Linux x64 | bakin-linux-x64 |
| Linux arm64 | bakin-linux-arm64 |
Custom install location
Section titled “Custom install location”Override the default with BAKIN_INSTALL_DIR:
curl -fsSL https://raw.githubusercontent.com/markhayden/bakin/main/install.sh | BAKIN_INSTALL_DIR="$HOME/bin" bashPin a version
Section titled “Pin a version”BAKIN_VERSION grabs a specific release tag instead of the latest:
curl -fsSL https://raw.githubusercontent.com/markhayden/bakin/main/install.sh | BAKIN_VERSION=v0.0.1-rc.8 bashManual download
Section titled “Manual download”Pull the asset for your platform from the GitHub releases page, check it against checksums.txt, drop it on your PATH as bakin. Same outcome as the installer, just more steps.
Build from source
Section titled “Build from source”For Intel Mac, Windows, or anything not in the release matrix, build from the repo. Source setup lives in Bakin’ Core.