I'm Chris. I blog here. I do it for me but if you enjoy it too then that makes me happy!

Compiling Helm on OpenBSD

Published on: by Chris Jones

1 min read

Despite my best efforts, I could not find a single practical tutorial on how to install Helm for OpenBSD. It's not in OpenBSD's package manager nor is it in the ports tree. That leaves building it from source. Here's how.

Build Steps

pkg_add git gmake bash
git clone https://github.com/helm/helm
cd helm
gmake
doas gmake install

After that, helm should be installed to /usr/local/bin/

That's it!