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 helmChocolatey users can use
choco install kubernetes-helmScoop users can use
scoop install helmGoFish users can use
gofish install helmSnapcraft 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.gzUnpack it with tar
tar -zxvf helm-v3.6.3-linux-amd64.tar.gzFind the helm binary in the unpacked directory, and move it to your bin directory path
mv linux-amd64/helm /usr/local/bin/helmCleanup
rm helm-v3.6.3-linux-amd64.tar.gz && rm -rf linux-amd64
Last updated