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)