Here is how to install Helm on Fedora 41. Tested and verified.
Prerequisites
- Fedora 41 installed and updated
- Root or sudo access
- Internet connection
Step 1: Update System
sudo dnf update -yStep 2: Install Helm
Fedora has shipped Helm in its official repositories since Fedora 35, so no separate repository needs to be added β dnf can install it directly:
sudo dnf install -y helmStep 3: Verify Installation
helm versionExpected output shows the installed version.
Fedoraβs repository build can lag a release or two behind the latest upstream Helm release. If you need the very latest version, use the official install script instead:
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4
chmod 700 get_helm.sh
./get_helm.shStep 4: 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 dnf 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/helmTroubleshooting
Package Not Found
Refresh the package metadata and confirm the package is visible before retrying:
sudo dnf clean all
sudo dnf makecache
dnf list helmhelm: command not found
If you used the install script rather than dnf, the binary lives in /usr/local/bin. Confirm itβs there and on your PATH:
which helm
echo $PATH
ls -l /usr/local/bin/helmOpen a new shell session if /usr/local/bin was only just added to your PATH.
Uninstall
If you installed Helm with dnf:
sudo dnf remove -y helmIf you installed it with the install script instead:
sudo rm -f /usr/local/bin/helmRelated Guides
About the Author
I am Luca Berton, AI and Cloud Advisor. Book a consultation to get help with your infrastructure setup.