@@ -4,10 +4,6 @@ description: Learn how to install and get running with Helm.
44sidebar_position : 2
55---
66
7- import Helm4 from " ../_v4-in-progress.mdx"
8-
9- <Helm4 />
10-
117This guide shows how to install the Helm CLI. Helm can be installed either from
128source, or from pre-built binary releases.
139
@@ -25,7 +21,7 @@ releases for a variety of OSes. These binary versions can be manually downloaded
2521and installed.
2622
27231 . Download your [ desired version] ( https://github.com/helm/helm/releases )
28- 2 . Unpack it (` tar -zxvf helm-v3 .0.0-linux-amd64.tar.gz ` )
24+ 2 . Unpack it (` tar -zxvf helm-v4 .0.0-linux-amd64.tar.gz ` )
29253 . Find the ` helm ` binary in the unpacked directory, and move it to its desired
3026 destination (` mv linux-amd64/helm /usr/local/bin/helm ` )
3127
@@ -47,13 +43,13 @@ You can fetch that script, and then execute it locally. It's well documented so
4743that you can read through it and understand what it is doing before you run it.
4844
4945``` console
50- $ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
46+ $ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4
5147$ chmod 700 get_helm.sh
5248$ ./get_helm.sh
5349```
5450
5551Yes, you can `curl
56- https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash` if
52+ https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4 | bash` if
5753you want to live on the edge.
5854
5955## Through Package Managers
@@ -164,7 +160,7 @@ links to the common builds:
164160### From Source (Linux, macOS)
165161
166162Building Helm from source is slightly more work, but is the best way to go if
167- you want to test the latest (pre-release) Helm version.
163+ you want to test the latest Helm version.
168164
169165You must have a working Go environment.
170166
0 commit comments