How to Install Audacity on Ubuntu 26.04, 24.04 and 22.04

Install Audacity on Ubuntu 26.04, 24.04 and 22.04 via APT, PPA, Snap or Flatpak. Compare versions and fix audio issues.

Last updatedAuthorJoshua JamesRead time8 minGuide typeUbuntuDiscussion1 comment

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. The official Audacity Linux page publishes AppImages rather than an Ubuntu .deb, so managed packages are usually easier to update and remove.

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.

MethodSourcePackage TrackUpdatesBest Fit
APTUbuntu repositoriesUbuntu release packageStandard APT updatesUbuntu 26.04 users and anyone who wants the stock Universe package
PPAUnofficial ubuntuhandbook1 PPAPPA-maintained 3.7.x buildAPT-managed updatesUbuntu 24.04 and 22.04 users who want a newer unofficial APT package
SnapSnapcraft by Snapcrafterslatest/stableAutomatic background updatesReaders who prefer Snap packaging and can accept the Snapcrafters build
FlatpakFlathubStable Flatpak releaseManual via flatpak updateFlatpak users who accept the unverified Flathub package and broad audio/file permissions

Ubuntu 26.04 already matches the current 3.7.7 series in the default repository. The ubuntuhandbook1 PPA does not publish resolute packages, so Ubuntu 26.04 users should skip that method.

The direct Audacity download is an AppImage from upstream, not an Ubuntu .deb. Use the AppImage only when you specifically want Audacity’s direct binary; APT, Snap, and Flatpak keep updates and removal tied to a package manager.

Update Ubuntu Before Installing Audacity

Refresh package metadata first so every install method starts from current repository information.

sudo apt update && sudo apt upgrade

These commands use sudo for 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 ReleaseDefault AudacityNotesBest For
Ubuntu 26.04 (resolute)Audacity 3.7.xCurrent 3.7.x package in resolute/universeThe easiest choice on 26.04
Ubuntu 24.04 (noble)Audacity 3.4.xnoble-backports also offers Audacity 3.7.3, but it is not the default candidateReaders who want the stock Ubuntu package on 24.04
Ubuntu 22.04 (jammy)Audacity 2.4.xOlder pre-3.x release in jammy/universeReaders 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 apt can 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 remains 3.4.2+dfsg-1build4 until you explicitly opt into that pocket.

Install Audacity from the ubuntuhandbook1 PPA on Ubuntu 24.04 or 22.04

The ubuntuhandbook1 PPA keeps Audacity current inside APT on Ubuntu 24.04 and 22.04. It is an unofficial community PPA, so use it when you specifically want a newer APT package and accept that it is outside Ubuntu’s default repository trust path.

For the Ubuntu releases covered here, this PPA publishes packages for noble and jammy, but not for resolute. Ubuntu 26.04 users should stay with the stock repository, Snap, or Flatpak instead.

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
audacity:
  Installed: (none)
  Candidate: 3.7.7-0build1~ubuntu24.04
  Version table:
     3.7.7-0build1~ubuntu24.04 500
        500 https://ppa.launchpadcontent.net/ubuntuhandbook1/audacity/ubuntu noble/main amd64 Packages
     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

Install Audacity after the PPA candidate appears.

sudo apt install audacity

On Ubuntu 22.04, expect 3.7.7-0build1~ubuntu22.04 with the source line pointing to jammy/main.

Install Audacity with Snap on Ubuntu

The Snap build is the quickest way to install Audacity on any supported Ubuntu LTS without adding a PPA. Snapcraft currently publishes the stable Audacity Snap through Snapcrafters, and the stable channel can trail the current upstream AppImage or Flathub release.

sudo snap install audacity

Confirm the installed Snap revision and channel.

snap list audacity
Name      Version  Rev   Tracking       Publisher      Notes
audacity  3.7.5    1212  latest/stable  snapcrafters*  -

Standard Ubuntu desktop installs include snapd. Minimal or heavily customized systems may need sudo apt install snapd before 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 currently marks the Audacity package as unverified and potentially unsafe because it has broad file and audio-session access. Treat this method as a Flatpak packaging choice, not as a stronger isolation choice.

Ubuntu does not install Flatpak by default. If flatpak is 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 -y

Check the installed Flatpak metadata and release version.

flatpak info org.audacityteam.Audacity | grep -E '^[[:space:]]*(ID|Ref|Arch|Branch|Version|Origin|Installation):'
          ID: org.audacityteam.Audacity
         Ref: app/org.audacityteam.Audacity/x86_64/stable
        Arch: x86_64
      Branch: stable
     Version: 3.7.7
      Origin: flathub
Installation: system

The current Flathub build already includes pulseaudio access and host file access, so a default install should not need a manual microphone permission override.

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.

  1. Open the Applications menu.
  2. Search for Audacity.
  3. Select the Audacity launcher.

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 -y

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 on Ubuntu 24.04 or 22.04, remove that source before the final metadata refresh.

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 on Ubuntu 24.04 or 22.04, 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 22.04, the candidate falls back to 2.4.2~dfsg0-5. Ubuntu 26.04 did not use this PPA method, but its stock candidate remains 3.7.7+dfsg-1.

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 remove org.audacityteam.Audacity -y

Confirm that the Audacity Flatpak app is no longer installed.

sudo flatpak list --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.

rm -rf ~/.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 with a package path that fits your release, whether that is the stock repository on 26.04 or a newer packaged build on 24.04 and 22.04. If this editor is part of a broader media setup, install OBS Studio on Ubuntu or install VLC Media Player on Ubuntu next.

Share this guide

Help another Linux user troubleshoot faster

Share this guide with someone troubleshooting Linux systems or saving it for later.

Follow LinuxCapable

Want more LinuxCapable guides in Google?

Add LinuxCapable as a preferred source so Google can show more of our fresh Linux tutorials in Top Stories and From your sources when relevant.

Add LinuxCapable as a preferred source on Google
Search LinuxCapable

Need another guide?

Search LinuxCapable for package installs, commands, troubleshooting, and follow-up guides related to what you just read.

Found this guide useful?

Support LinuxCapable to keep tutorials free and up to date.

Buy me a coffeeBuy me a coffee

1 thought on “How to Install Audacity on Ubuntu 26.04, 24.04 and 22.04”

Before commenting, please review our Comments Policy.
Formatting tips for your comment

You can use basic HTML to format your comment. Useful tags currently allowed in published comments:

You type Result
<code>command</code> command
<strong>bold</strong> bold
<em>italic</em> italic
<blockquote>quote</blockquote> quote block

Got a Question or Feedback?

We read and reply to every comment - let us know how we can help or improve this guide.

Verify before posting: