Install Helm

Every release of Helm provides binary releases for a variety of OS. These binary versions can be manually downloaded and installed. If you want to use a package manager:

Or install it manually by unpacking the helm binary and add it to your PATH:

  • Download latest version from Helm Releasesarrow-up-right site.

    mkdir ~/helmtmp && cd ~/helmtmp
    curl -o helm-v3.6.3-linux-amd64.tar.gz https://get.helm.sh/helm-v3.6.3-linux-amd64.tar.gz
  • Unpack it with tar

    tar -zxvf helm-v3.6.3-linux-amd64.tar.gz
  • Find the helm binary in the unpacked directory, and move it to your bin directory path

    mv linux-amd64/helm /usr/local/bin/helm
  • Cleanup

    rm helm-v3.6.3-linux-amd64.tar.gz && rm -rf linux-amd64

Last updated