Cleaning up a podcast track, trimming an interview, or digitizing old recordings is still easier in Audacity than in most Linux audio editors. If you need to install Audacity on Ubuntu, the package you choose depends on how new a build you want and how closely you want it tied to Ubuntu’s own update flow.
Audacity is available across Ubuntu 26.04 (resolute), 24.04 (noble), and 22.04 (jammy). Ubuntu 26.04 ships Audacity 3.7.7, Ubuntu 24.04 ships 3.4.2 by default, and Ubuntu 22.04 stays on 2.4.2. Upstream’s official Audacity Linux page publishes 3.7.8 AppImages rather than an Ubuntu .deb, while the PPA, Snap, and Flatpak paths now offer 3.7.8 packaged builds.
Install Audacity on Ubuntu
Choose one installation path rather than mixing package managers. The stock repository is the simplest choice on 26.04, while newer packaged builds matter more on 24.04 and especially 22.04.
| Method | Source | Package Track | Updates | Best Fit |
|---|---|---|---|---|
| APT | Ubuntu repositories | Ubuntu release package | Standard APT updates | Ubuntu 26.04 users and anyone who wants the stock Universe package |
| PPA | Unofficial ubuntuhandbook1 PPA | PPA-maintained 3.7.8 build | APT-managed updates | Users on supported Ubuntu LTS releases who want the newest APT package and accept an unofficial PPA |
| Snap | Snapcraft by Snapcrafters | latest/stable 3.7.8 | Automatic background updates | Readers who prefer Snap packaging and can accept the Snapcrafters build |
| Flatpak | Flathub | 3.7.8 stable Flatpak release | Manual via flatpak update | Flatpak users who accept the unverified medium-risk Flathub listing |
Use the stock repository on Ubuntu 26.04 when you prefer Ubuntu’s own package and can accept 3.7.7. Use the PPA, Snap, or Flatpak when you want the 3.7.8 series, but keep the source tradeoff visible: the PPA is unofficial, Snap is maintained by Snapcrafters, and Flathub marks its listing as unverified and medium risk.
Use the Audacity AppImage Download Only When You Need It
The direct Audacity download is an AppImage from upstream, not an Ubuntu .deb. Treat that path as a manual upstream binary: it targets amd64 systems, requires FUSE 2, and updates outside APT, Snap, and Flatpak. If you choose it anyway, use the Ubuntu AppImage setup guide for the launcher and FUSE workflow before running the downloaded file.
Update Ubuntu Before Installing Audacity
Refresh package metadata first so every install method starts from fresh repository information.
sudo apt update && sudo apt upgrade
These commands use
sudofor tasks that need root privileges. If your account is not configured for it yet, follow the guide on add a new user to sudoers on Ubuntu or run the commands from a root shell.
Install Audacity from Ubuntu Repositories
Install Audacity from Ubuntu’s repository when you want the distro-managed package and do not need newer features than your release already ships.
| Ubuntu Release | Default Audacity | Notes | Best For |
|---|---|---|---|
| Ubuntu 26.04 (resolute) | Audacity 3.7.x | Stock 3.7.7 package in resolute/universe | The easiest Ubuntu-managed choice on 26.04 |
| Ubuntu 24.04 (noble) | Audacity 3.4.x | noble-backports also offers Audacity 3.7.3, but it is not the default candidate | Readers who want the stock Ubuntu package on 24.04 |
| Ubuntu 22.04 (jammy) | Audacity 2.4.x | Older pre-3.x release in jammy/universe | Readers who value the stock package more than newer features |
Audacity comes from Ubuntu’s Universe component. Standard desktop installs usually have Universe enabled already, but minimal or customized systems may need the Ubuntu Universe and Multiverse setup guide before
aptcan locate the package.
sudo apt install audacity
Check the installed package version after APT finishes.
dpkg -s audacity | grep '^Version:'
Version: 3.7.7+dfsg-1
On Ubuntu 24.04, expect Version: 3.4.2+dfsg-1build4. On Ubuntu 22.04, expect Version: 2.4.2~dfsg0-5.
Ubuntu 24.04 also lists Audacity 3.7.3 in
noble-backports, but the default candidate remains3.4.2+dfsg-1build4until you explicitly opt into that pocket.
Install Audacity from the ubuntuhandbook1 PPA on Ubuntu
The ubuntuhandbook1 PPA publishes Audacity 3.7.8 packages for Ubuntu 26.04, 24.04, and 22.04. It is an unofficial community PPA, so use it when you specifically want a newer APT-managed package and accept that it is outside Ubuntu’s default repository trust path.
Launchpad labels this source as unsupported packages from an untrusted PPA. Use it only if the newer package matters more than staying inside Ubuntu’s repository trust path.
Minimal Ubuntu installs may not include add-apt-repository. Install the helper package if that command is missing.
command -v add-apt-repository >/dev/null || sudo apt install software-properties-common
sudo add-apt-repository ppa:ubuntuhandbook1/audacity -y
sudo apt update
Confirm that the PPA becomes the candidate before installing Audacity.
apt-cache policy audacity
The candidate should come from ppa.launchpadcontent.net/ubuntuhandbook1/audacity and match your release, such as 3.7.8-0build1~ubuntu26.04, 3.7.8-0build1~ubuntu24.04, or 3.7.8-0build1~ubuntu22.04. If Ubuntu’s older Universe package remains the candidate, stop and review the PPA setup before installing.
Install Audacity after the PPA candidate appears.
sudo apt install audacity
Confirm the installed PPA package after APT finishes.
dpkg -s audacity | grep '^Version:'
The installed version should start with 3.7.8-0build1~ubuntu and end with your Ubuntu release number.
Install Audacity with Snap on Ubuntu
The Snap build is a quick way to install Audacity on any supported Ubuntu LTS without adding a PPA. Snapcraft lists the stable Audacity Snap through Snapcrafters, with latest/stable on the 3.7.8 release.
sudo snap install audacity
Confirm the installed Snap version and tracking channel.
snap list audacity
The Version column should match the latest/stable listing on Snapcraft. The revision number can change between Snap refreshes.
Standard Ubuntu desktop installs include
snapd. Minimal or heavily customized systems may needsudo apt install snapdbefore the Snap command works.
Install Audacity with Flatpak on Ubuntu
Flathub distributes Audacity as org.audacityteam.Audacity. That app ID matters because you use it for install, update, launch, and removal commands.
Flathub marks the Audacity package as unverified and medium risk. Treat this method as a Flatpak packaging choice, not as a stronger isolation choice.
Ubuntu does not install Flatpak by default. If
flatpakis missing on your system, follow the guide to install Flatpak on Ubuntu first, then come back here.
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
Confirm that Flathub is present before you install the app.
flatpak remotes --columns=name,options | grep -E '^flathub[[:space:]]'
flathub system
Install the Flathub build after the remote is present.
sudo flatpak install flathub org.audacityteam.Audacity
Check the installed Flatpak metadata and release version.
flatpak info org.audacityteam.Audacity | grep -E '^[[:space:]]*(ID|Ref|Arch|Branch|Version|Origin|Installation):'
The metadata should show ID: org.audacityteam.Audacity, Origin: flathub, Branch: stable, and the Flathub version. The stable Flathub listing shows 3.7.8.
If the permissions output already includes pulseaudio and host file access, the default Flatpak permissions are not the blocker for normal audio and file-open workflows. Do not add broad overrides unless a specific device or folder is still missing.
Launch Audacity on Ubuntu
Audacity is still a desktop application even when you start it from a terminal. These commands launch the GUI for the package format you installed, not a headless batch processor. For scripted audio conversion or extraction, use a command-line tool such as FFmpeg on Ubuntu instead.
Launch Audacity from the Terminal on Ubuntu
Use the command that matches your install method. The Flatpak build uses the app ID instead of the desktop name.
# APT or PPA
audacity
# Snap
snap run audacity
# Flatpak
flatpak run org.audacityteam.Audacity
Launch Audacity from the Applications Menu on Ubuntu
The desktop launcher is still the easiest route when you do not need to start Audacity from a terminal.
- Open the Applications menu.
- Search for
Audacity. - Select the Audacity launcher.
If the Snap or Flatpak launcher does not appear immediately after a fresh install, use the matching terminal command above to start Audacity, then log out and back in to refresh the desktop application list.

Troubleshoot Audacity on Ubuntu
Most Audacity problems on Ubuntu come down to device detection, sandbox permissions, or audio buffer settings. Start with the symptom that matches what you are seeing instead of changing several settings at once.
Fix Missing Audio Devices in Audacity on Ubuntu
Check whether Ubuntu sees your playback hardware before you assume Audacity is the problem.
aplay -l
**** List of PLAYBACK Hardware Devices **** card 0: PCH [HDA Intel PCH], device 0: ALC892 Analog [ALC892 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0
If Ubuntu lists playback hardware here but Audacity does not, select Transport > Rescan Audio Devices, then open Edit > Preferences > Audio Settings. On Linux, Audacity often has only the ALSA host, so check the playback and recording device fields for default, pulse, or your hardware device instead of assuming the Host field should change.
Fix Microphone Access for Audacity Snap or Flatpak on Ubuntu
For the Flatpak build, check permissions first so you do not add an override the package already has. If you installed the Snap build, skip to the Snap connection check.
flatpak info --show-permissions org.audacityteam.Audacity
[Context] shared=network;ipc; sockets=x11;pulseaudio; devices=dri; filesystems=xdg-run/pipewire-0;/tmp;host;
If you already see pulseaudio, Flatpak permissions are not the blocker. Move on to Audacity’s input device settings inside the app and use Transport > Rescan Audio Devices if the device list is stale.
For the Snap build, check whether the microphone interface is connected. The grep filter keeps the connection table focused on Audacity’s microphone interface; see the grep command examples if you want to adjust that filter for other interfaces.
snap connections audacity | grep "audio-record"
audio-record audacity:audio-record - -
A dash in the middle column means the microphone interface is not connected yet. Connect it and check again.
sudo snap connect audacity:audio-record
snap connections audacity | grep "audio-record"
audio-record audacity:audio-record :audio-record manual
Fix Playback Crackling in Audacity on Ubuntu
Crackling usually points to a buffer that is too small for the audio device or workload. In Edit > Preferences > Audio Settings, raise Buffer Length to around 200 ms, then test again before changing anything else.
If the problem only appears while recording, close other audio applications and try a lower project rate such as 44100 Hz. That reduces real-time load on slower USB interfaces and older laptops.
Update or Remove Audacity on Ubuntu
Keep the maintenance commands matched to the package format you chose. Switching package managers later is fine, but clean up the old one first so you do not lose track of where updates come from.
Update Audacity on Ubuntu
Each package format updates Audacity a little differently.
Update Audacity with APT on Ubuntu
APT users can update only Audacity instead of running a full system upgrade.
sudo apt update && sudo apt install --only-upgrade audacity
Update Audacity with Snap on Ubuntu
Snap refreshes apps automatically, but you can trigger an immediate refresh when you want the latest stable build sooner.
sudo snap refresh audacity
Update Audacity with Flatpak on Ubuntu
Flatpak can refresh just the Audacity app instead of every Flatpak package on the system.
sudo flatpak update org.audacityteam.Audacity
Remove Audacity from Ubuntu
Remove the package with the same tool that installed it. Package removal does not delete projects you saved elsewhere, so review your own recording or export folders before deleting anything manually.
Remove the APT Package for Audacity on Ubuntu
Remove the package first, then preview any orphaned dependencies before deleting them.
sudo apt remove audacity
Continue only if the dry run lists Audacity-related packages you no longer need.
sudo apt autoremove --dry-run
sudo apt autoremove
If you used the PPA, remove that source before checking the fallback Ubuntu candidate.
sudo add-apt-repository --remove ppa:ubuntuhandbook1/audacity -y
sudo apt update
If you need a broader cleanup workflow, follow the guide to remove a PPA from Ubuntu.
Check that the package is gone after removal.
dpkg -l audacity 2>/dev/null | grep '^ii' || echo "audacity not installed"
audacity not installed
If you removed the PPA, confirm that APT now points back to Ubuntu’s repository candidate. On Ubuntu 24.04, the candidate should return to the default Universe package:
apt-cache policy audacity
audacity:
Installed: (none)
Candidate: 3.4.2+dfsg-1build4
Version table:
3.7.3+dfsg-1~bpo24.04.1 100
100 http://au.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages
3.4.2+dfsg-1build4 500
500 http://au.archive.ubuntu.com/ubuntu noble/universe amd64 Packages
On Ubuntu 26.04, the candidate falls back to 3.7.7+dfsg-1. On Ubuntu 22.04, it falls back to 2.4.2~dfsg0-5.
Remove the Audacity Snap on Ubuntu
Snap removal deletes the installed package and leaves you with a simple absence check.
sudo snap remove --purge audacity
Verify that the Snap is gone.
snap list audacity 2>/dev/null || echo "audacity not installed"
audacity not installed
Remove the Audacity Flatpak on Ubuntu
Remove the Flatpak app first, then check that the app ID no longer appears in the installed application list.
sudo flatpak uninstall org.audacityteam.Audacity
Confirm that the Audacity Flatpak app is no longer installed.
flatpak list --system --app --columns=application | grep -Fx org.audacityteam.Audacity || echo "NOT_INSTALLED"
NOT_INSTALLED
Only delete the sandbox data directory when you are sure you no longer need Audacity’s Flatpak settings, caches, or recovery data.
if [ -e "$HOME/.var/app/org.audacityteam.Audacity" ]; then
du -sh "$HOME/.var/app/org.audacityteam.Audacity"
fi
rm -rf -- "$HOME/.var/app/org.audacityteam.Audacity"
Clean unused Flatpak runtimes interactively so you can review the list before removal.
sudo flatpak uninstall --unused
Conclusion
Audacity is installed on Ubuntu through a package path that matches your update and trust preferences: stock Universe packages for the Ubuntu-managed route, the unofficial PPA for the newest APT-managed build, or Snap and Flatpak for store-managed packages. If this editor is part of a broader media setup, install OBS Studio on Ubuntu or install VLC Media Player on Ubuntu next.


Thank You for this guide! For Install Method 1, Option 2, the installed version is now 3.7.7