# Installation HelmCLI

<div id="bkmrk-"></div><span style="color: rgb(45, 194, 107);">Installation helm, regarder si vous allez bien pointé sur là dernière version d'helm par rapport à la publication de cette rubrique. </span>

```bash
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
ls /usr/local/bin/helm
export PATH=$PATH:/usr/local/bin
./get_helm.sh
```

<span style="color: rgb(45, 194, 107);">TEST HELM INSTALL :</span>

```bash
helm version
helm repo add stable https://charts.helm.sh/stable
helm repo update
```