Skip to main content
🎓 Claude Code Masterclass Learn AI-assisted development on Udemy — plus the companion book on Leanpub & Amazon. Start Learning
Install Helm on Debian 12
DevOps

Install Helm on Debian 12: Complete Guide (2026)

Install Helm on Debian 12 in 2026. Official repository setup, package installation, post-install configuration, and troubleshooting.

LB
Luca Berton
· 2 min read

Here is how to install Helm on Debian 12. Tested and verified.

Prerequisites

  • Debian 12 installed and updated
  • Root or sudo access
  • Internet connection
  • curl installed (preinstalled on most Debian images; if missing, run sudo apt install -y curl)

Step 1: Update System

sudo apt update && sudo apt upgrade -y

Step 2: Download the Install Script

Helm is not published in Debian’s own repositories, and the Helm project itself does not maintain a first-party APT repository. The officially recommended way to install Helm on Debian is the installer script published by the Helm project:

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4
chmod 700 get_helm.sh

Step 3: Install Helm

./get_helm.sh

The script detects your OS and architecture, downloads the matching Helm release, verifies its checksum, and copies the helm binary to /usr/local/bin.

Alternative: Community-Maintained APT Repository

Members of the Helm community also maintain an APT repository for Debian/Ubuntu. It’s linked from Helm’s own docs but isn’t published by the core Helm maintainers, and it moved from Balto to Buildkite in 2025 — if you’re following an older tutorial that references baltocdn.com, use these current commands instead:

sudo apt-get install curl gpg apt-transport-https --yes
curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/helm.gpg] https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm

Step 4: Verify Installation

helm version

Expected output shows the installed version, e.g. version.BuildInfo{Version:"v4.x.x", ...}.

Step 5: Set Up Shell Completion

Helm is a CLI binary, not a background service — there is no daemon to enable or start. The genuinely useful post-install step is turning on shell completion:

sudo apt install -y bash-completion   # if not already installed
helm completion bash | sudo tee /etc/bash_completion.d/helm > /dev/null
source /etc/bash_completion.d/helm

Troubleshooting

helm: command not found

The install script places the binary in /usr/local/bin. Confirm it’s there and on your PATH:

which helm
echo $PATH
ls -l /usr/local/bin/helm

Open a new shell session if /usr/local/bin was only just added to your PATH.

Script Fails to Download (TLS/curl Errors)

If curl fails with a certificate or TLS error, update your CA certificates and retry:

sudo apt update && sudo apt install -y ca-certificates
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4

Corporate proxies and an incorrect system clock are the most common causes of TLS failures when fetching the script from GitHub.

Checksum Verification Failed

If you downloaded a release archive manually instead of using the script and its sha256sum doesn’t match the checksum published on the GitHub releases page, the download was corrupted or tampered with in transit — delete it and download it again.

Uninstall

sudo rm -f /usr/local/bin/helm

To also remove Helm’s cache, config, and data directories:

rm -rf ~/.cache/helm ~/.config/helm ~/.local/share/helm

If you installed via the community APT repository instead:

sudo apt remove -y helm

About the Author

I am Luca Berton, AI and Cloud Advisor. Book a consultation to get help with your infrastructure setup.

#Helm #Debian 12 #Installation #Linux #DevOps
Share:
Kubernetes & Containerization

Need help with Kubernetes & Containerization?

Master Kubernetes and container orchestration with hands-on workshops and architecture consulting.

Learn more about Kubernetes & Containerization

Want to operate this yourself, in production?

Take the free AI Platform Engineer Readiness Scorecard to see which skills transfer — then build a production-shaped AI platform in the 4-week Bootcamp.

Take the Scorecard →
Luca Berton — The Production AI Expert, Docker Captain

Luca Berton

The Production AI Expert · Docker Captain · KubeCon Speaker

15+ years in enterprise infrastructure. Author of 8 technical books, creator of Ansible Pilot (1M+ YouTube views, 648K site users). Former Red Hat engineer. Speaker at KubeCon EU 2026 and Red Hat Summit 2026.

Free 30-min Production AI consultation

Book Now