Installez la barre sur WSL

# Download the install shell script
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3

# Allow to Run
chmod 700 get_helm.sh
# Install
./get_helm.sh

# Confirm it works
$helm version
    version.BuildInfo{Version:"v3.0.2", GitCommit:"19e47ee3283ae98139d98460de796c1be1e3975f", GitTreeState:"clean", 		GoVersion:"go1.13.5"}
Scary Salmon