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:

  • Homebrew users can use brew install helm

  • Chocolatey users can use choco install kubernetes-helm

  • Scoop users can use scoop install helm

  • GoFish users can use gofish install helm

  • Snapcraft users can use snap install helm --classic

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

  • Download latest version from Helm Releases 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