How to Install Audacity on Ubuntu (26.04, 24.04, 22.04)

Last updated Friday, March 13, 2026 2:17 pm 9 min read 1 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 on every supported Ubuntu LTS release. 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, while the official Audacity Linux page publishes an AppImage rather than an Ubuntu .deb.

Install Audacity on Ubuntu

These installation paths cover the current Ubuntu LTS releases without 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.

MethodChannelVersionUpdatesBest For
APTUbuntu RepositoriesDistribution defaultStandard APT updatesUbuntu 26.04 users and anyone who wants the stock package
PPAubuntuhandbook1 Launchpad PPACurrent PPA buildStandard APT updatesUbuntu 24.04 and 22.04 users who want a newer APT package
SnapSnapcraftCurrent stable SnapAutomatic background updatesReaders who want a current package with minimal setup
FlatpakFlathubCurrent Flathub buildManual via flatpak updateReaders who prefer Flatpak tooling and Flathub delivery

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.

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.04Audacity 3.7.xCurrent 3.7.x package in resolute/universeThe easiest choice on 26.04
Ubuntu 24.04Audacity 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.04Audacity 2.4.xOlder pre-3.x release in jammy/universeReaders who value the stock package more than newer features
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. This is the APT-based upgrade path when the stock package on your release is older than you want.

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.

sudo add-apt-repository ppa:ubuntuhandbook1/audacity -y
sudo apt update

APT should show the new Launchpad source during the refresh.

Get:5 https://ppa.launchpadcontent.net/ubuntuhandbook1/audacity/ubuntu noble InRelease [18.1 kB]
Get:6 https://ppa.launchpadcontent.net/ubuntuhandbook1/audacity/ubuntu noble/main amd64 Packages [1,064 B]
Get:7 https://ppa.launchpadcontent.net/ubuntuhandbook1/audacity/ubuntu noble/main Translation-en [492 B]

Install Audacity after the new package source appears in APT.

sudo apt install audacity

Verify that the installed package now comes from the PPA.

apt-cache policy audacity
audacity:
  Installed: 3.7.7-0build1~ubuntu24.04
  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
        100 /var/lib/dpkg/status

On Ubuntu 22.04, expect the same 3.7.7 PPA release with the source line pointing to jammy/main.

Install Audacity with Snap on Ubuntu

The Snap build is the quickest way to get a current Audacity package on any supported Ubuntu LTS without adding a PPA. Standard Ubuntu installs already include snapd, but minimal or heavily customized images may need it installed before this command works.

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

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.

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 | grep "^flathub"
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
Audacity - Audacity is the world's most popular audio editing and recording app

          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.

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 devices here but Audacity does not, open Edit > Preferences > Audio Settings and switch the Host away from ALSA. PipeWire or PulseAudio usually matches Ubuntu desktop sessions better.

Fix Microphone Access for Audacity Snap or Flatpak on Ubuntu

Check Flatpak permissions first so you do not add an override the package already has.

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 and host settings inside the app.

For the Snap build, check whether the microphone interface is connected. If you want to adjust the filter later, see how to filter command output with grep.

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 clear any orphaned dependencies. If you used the PPA on Ubuntu 24.04 or 22.04, remove that source before the final metadata refresh.

sudo apt remove audacity
sudo apt autoremove
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.

apt-cache policy audacity
audacity:
  Installed: (none)
  Candidate: 3.7.7+dfsg-1
  Version table:

On Ubuntu 24.04, the candidate falls back to 3.4.2+dfsg-1build4. 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 audacity

Verify that the Snap is gone.

snap list | grep "^audacity" || echo "audacity snap not installed"
audacity snap not installed

Remove the Audacity Flatpak on Ubuntu

Use --delete-data when you want Flatpak to remove Audacity’s sandboxed settings and caches along with the app. Omit that flag if you plan to reinstall later and want to keep those Flatpak-managed settings.

sudo flatpak remove --delete-data org.audacityteam.Audacity -y
sudo flatpak uninstall --unused -y

Confirm that the Audacity Flatpak app is no longer installed.

flatpak list --app | grep -F org.audacityteam.Audacity || echo "org.audacityteam.Audacity not installed"
org.audacityteam.Audacity not installed

Audacity on Ubuntu FAQ

Which Audacity version does Ubuntu ship?

Ubuntu 26.04 ships Audacity 3.7.7, Ubuntu 24.04 ships 3.4.2 by default with Audacity 3.7.3 also available in noble-backports, and Ubuntu 22.04 ships 2.4.2. If you want a newer managed package on Ubuntu 24.04 or 22.04, use the Snap, Flatpak, or ubuntuhandbook1 PPA methods instead of the stock repository package.

Can I download Audacity directly for Ubuntu?

Yes, but the official Audacity Linux page publishes an AppImage rather than an Ubuntu .deb. On Ubuntu, APT, Snap, Flatpak, or the ubuntuhandbook1 PPA usually make updates and removal simpler than managing the AppImage yourself.

Do I need the Audacity PPA on Ubuntu 26.04 or 24.04?

Ubuntu 26.04 does not need it because the default repository already ships Audacity 3.7.7, and the PPA does not publish resolute packages anyway. On Ubuntu 24.04, the PPA is optional if you want a newer APT package than the stock 3.4.2 build and do not want to switch to Snap or Flatpak.

Does Audacity have a command line mode on Ubuntu?

You can launch Audacity from a terminal with audacity, snap run audacity, or flatpak run org.audacityteam.Audacity, but editing still happens in the GUI. For batch audio conversion or scripted processing, use a command-line tool such as FFmpeg instead.

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. For scripted conversions and audio extraction, install FFmpeg on Ubuntu. If this editor is part of a broader media setup, install OBS Studio on Ubuntu or install VLC Media Player on Ubuntu next.

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 coffee Buy me a coffee

1 thought on “How to Install Audacity on Ubuntu (26.04, 24.04, 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:

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

Leave a Comment

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

Let us know you are human: