Here is how to install Helm on Ubuntu in 2026. Tested and verified.
Prerequisites
- Ubuntu 22.04 or 24.04 LTS
kubectlconfigured with cluster access- sudo privileges
Method 1: Official Script (Recommended)
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bashMethod 2: APT Repository
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helmMethod 3: Snap
sudo snap install helm --classicVerify Installation
helm version
helm envPost-Installation Setup
# Add common repositories
helm repo add stable https://charts.helm.sh/stable
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
# Test with a chart
helm search repo nginxQuick Start
# Install a chart
helm install my-nginx bitnami/nginx
# List releases
helm list
# Uninstall
helm uninstall my-nginx