DEV Community

Cover image for How to install HELM Version (above 3) in Linux..
vivek kumar sahu
vivek kumar sahu

Posted on

How to install HELM Version (above 3) in Linux..

For Helm installation in Linux, you can proceed further.

๐Ÿ“ŒGo to this Link--> https://github.com/helm/helm/releases
Now copy this link, as shown in the below image.
Alt Text

๐Ÿ“ŒNow run the below command to download the software.
$ wget https://get.helm.sh/helm-v3.5.2-linux-amd64.tar.gz
Alt Text

Software is installed but it is in a zip format.
Alt Text

๐Ÿ“ŒSo you need to unzip this file "helm-v3.5.2-linux-amd64.tar.gz"
Now, run the command to unzip.
$ tar -xvzf helm-v3.5.2-linux-amd64.tar.gz
Alt Text

๐Ÿ“ŒIn Linux, all program files needed to be stored in "/usr/bin/" folder.
Copy this program file("linux-amd64/helm") into this folder("/usr/bin/").
Alt Text

๐Ÿ“ŒRun the command to copy.
$ cp linux-amd64/helm /usr/bin/
Alt Text

๐Ÿ“ŒNow you can check, whether it is installed or not.
$ helm version
if version shows, it means it is successfully installed.
Alt Text

Top comments (0)