Post-Installation Setup

Add kapsl to PATH

The installer places the kapsl binary at ~/.local/bin/kapsl. Add that directory to your PATH if it isn't already there:

# bash
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

# zsh
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

Verify the installation

kapsl --help

You should see the kapsl logo and a list of available flags.

Verify the container runtime

podman --version

On macOS, also make sure the Podman machine is running:

podman machine start

Run your first command

echo '{"ok": true}' | kapsl jq '.ok'
# true

The first run pulls the image. Subsequent runs start from the local cache.

Next steps