How to Install MusicBrainz Picard on Ubuntu 26.04, 24.04 and 22.04

Last updated Monday, March 23, 2026 5:28 pm 8 min read

MusicBrainz’s own downloads page points Linux users toward managed packages instead of a one-size-fits-all installer, which fits a desktop tagger better than chasing a random download. To install MusicBrainz Picard on Ubuntu, the practical choice is whether Ubuntu’s own package is enough for your release, whether the MusicBrainz PPA is worth adding on 24.04 or 22.04, or whether the Flathub build fits better.

Picard is a graphical music tagger powered by the MusicBrainz database and AcoustID fingerprints, so it can identify tracks, rename files, and fill in metadata even when your library starts out incomplete. On Ubuntu it works as a desktop application, while commands like picard --help and picard --version are mostly useful for quick terminal checks.

Install MusicBrainz Picard on Ubuntu

Ubuntu 26.04 already ships Picard 2.13.3 in the Ubuntu repositories, while Ubuntu 24.04 and 22.04 carry older builds. That makes the default package the simplest path on every supported LTS release, the MusicBrainz stable PPA the newer APT option for 24.04 and 22.04, and Flatpak the easiest way to keep the same sandboxed build across all three.

MethodChannelVersionUpdatesBest For
Ubuntu repositoriesUbuntu PackagesDistribution defaultAutomatic via APTUbuntu 26.04 users and anyone who prefers Ubuntu-managed packages
MusicBrainz stable PPALaunchpad PPALatest stable on 24.04 and 22.04Automatic via APTUbuntu 24.04 or 22.04 users who want a newer APT build
FlatpakFlathubLatest stableManual via FlatpakReaders who want the same sandboxed package on 26.04, 24.04, and 22.04
  • Use the Ubuntu repository on 26.04 if you want Picard 2.13.3 without another software source to maintain.
  • Use the MusicBrainz stable PPA on 24.04 or 22.04 if you want a newer APT-managed package than Ubuntu ships by default.
  • Use Flatpak when you want the same release across all supported Ubuntu LTS versions and do not mind the sandboxed app model.

Supported Ubuntu releases for this workflow are 26.04, 24.04, and 22.04. Ubuntu’s repository package and the Flathub build work across all three supported LTS releases, but the MusicBrainz stable PPA currently publishes packages for Ubuntu 24.04 and 22.04 only, not Ubuntu 26.04.

Install MusicBrainz Picard from Ubuntu Repositories

This is the lowest-maintenance method, and it already gives Ubuntu 26.04 the current 2.13.3 release. Picard lives in Ubuntu’s Universe repository on all three supported LTS releases.

sudo apt update

These commands use sudo for package changes. If your account does not have admin access yet, follow how to add a new user to sudoers on Ubuntu before you continue.

If apt cannot find picard, enable Universe first. The same steps in enable Universe and Multiverse in Ubuntu also cover systems where the extra repository components were turned off earlier.

sudo apt install picard -y

Check the installed package version and confirm that the desktop launcher command is on your path.

dpkg-query -W -f='${Package} ${Version}\n' picard
command -v picard
picard 2.13.3-1ubuntu1
/usr/bin/picard

Ubuntu 24.04 prints picard 2.11-1, and Ubuntu 22.04 prints picard 2.7.3-1. The launcher path stays /usr/bin/picard across all three supported releases.

Install MusicBrainz Picard from the MusicBrainz Stable PPA

The MusicBrainz stable PPA matters on Ubuntu 24.04 and 22.04, where it raises Picard to 2.13.3 while keeping APT-style updates. Ubuntu 26.04 already ships Picard 2.13.3, and the stable PPA does not currently publish a usable resolute Release file.

sudo apt install software-properties-common -y
sudo add-apt-repository -y ppa:musicbrainz-developers/stable
sudo apt update

Install Picard after the new source is available in APT.

sudo apt install picard -y

Verify the newer package build and the launcher path.

dpkg-query -W -f='${Package} ${Version}\n' picard
command -v picard
picard 2.13.3-0~ppa26~ubuntu24.04.1
/usr/bin/picard

Ubuntu 22.04 prints the same upstream release with a Jammy suffix, 2.13.3-0~ppa26~ubuntu22.04.1. If you later switch back to the Ubuntu package, remove the PPA first so only one source controls future Picard updates.

Install MusicBrainz Picard with Flatpak on Ubuntu

Flatpak is the easiest way to keep the same Picard build across Ubuntu 26.04, 24.04, and 22.04. It also keeps the application isolated from the rest of your system packages.

Flatpak is not installed by default on Ubuntu. If you need the base setup first, install Flatpak on Ubuntu before you add Flathub here.

Add the Flathub remote with the current canonical repository URL. The --if-not-exists flag makes the command safe to rerun later.

sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo

Confirm that Flathub is available at system scope before you install the app.

flatpak remotes
flathub system

Install the Picard Flatpak package from Flathub.

sudo flatpak install flathub org.musicbrainz.Picard -y

Check the installed Flatpak metadata after the install finishes.

flatpak info org.musicbrainz.Picard
Ref: app/org.musicbrainz.Picard/x86_64/stable
Version: 2.13.3
Installation: system

Launch MusicBrainz Picard on Ubuntu

MusicBrainz Picard installs cleanly from a shell, but the application itself still opens as a desktop program. The picard command starts the graphical interface rather than a text-only tagging mode.

Launch MusicBrainz Picard from the Terminal on Ubuntu

Use the normal launcher command when you installed Picard through Ubuntu’s repositories or the MusicBrainz PPA.

picard

Use the Flatpak runtime wrapper when you installed the Flathub build instead.

flatpak run org.musicbrainz.Picard

Check MusicBrainz Picard Command-Line Options on Ubuntu

Picard is still a desktop app, but its launcher also supports command-line checks and batch-style options. That makes it easy to confirm the install from a terminal or inspect the available flags before you hand files to a running Picard session.

picard --help
picard --version
usage: picard [-h] [-a AUDIT] [-c CONFIG_FILE] [-d] [-e COMMAND [COMMAND ...]]
              [-M] [-N] [-P] [--no-crash-dialog] [-s] [-v] [-V]
              [FILE_OR_URL ...]
MusicBrainz Picard 2.11

Ubuntu 26.04, the MusicBrainz PPA build, and the Flatpak build print MusicBrainz Picard 2.13.3 instead. Official Picard documentation also covers the -e and --exec options for passing commands or files to a running instance, which is useful for batch processing without turning Picard into a fully text-only tagger.

Launch MusicBrainz Picard from the Ubuntu Applications Menu

Use the desktop menu if you would rather start Picard like any other Ubuntu app.

  1. Open Activities in the top-left corner of the desktop.
  2. Select Show Applications.
  3. Search for MusicBrainz Picard and open the launcher.

Update or Remove MusicBrainz Picard on Ubuntu

Picard stays easy to maintain once it is installed, but the exact commands depend on whether you chose APT or Flatpak. The sections below keep those workflows separate so you do not remove a source or runtime you never used.

Update APT Installations of MusicBrainz Picard

This one command works for the Ubuntu repository package and the MusicBrainz stable PPA build.

sudo apt update && sudo apt install --only-upgrade picard -y

Use the installed package version to confirm the update that is now on your system.

dpkg-query -W -f='${Package} ${Version}\n' picard
picard 2.13.3-1ubuntu1
picard 2.13.3-0~ppa26~ubuntu24.04.1

Update the Flatpak Build of MusicBrainz Picard

Keep the system-wide Flatpak build current with Flatpak’s app update command.

sudo flatpak update org.musicbrainz.Picard -y

Verify the installed version and scope after the update completes.

flatpak info org.musicbrainz.Picard | grep -E '^(Version|Installation):'
Version: 2.13.3
Installation: system

Remove APT Installations of MusicBrainz Picard

Remove the Ubuntu or PPA package with one APT command, then clean up the PPA only if you added it earlier.

sudo apt remove --autoremove picard -y

Remove the MusicBrainz stable PPA after package removal if you no longer want that repository on Ubuntu 24.04 or 22.04.

sudo add-apt-repository --remove -y ppa:musicbrainz-developers/stable
sudo apt update

Check that the package is no longer installed and that only the Ubuntu candidate remains after PPA cleanup.

apt-cache policy picard
picard:
   Installed: (none)
   Candidate: 2.13.3-1ubuntu1

Ubuntu 24.04 shows Candidate: 2.11-1, and Ubuntu 22.04 shows Candidate: 2.7.3-1. If you still see a Launchpad entry in the version table after removing the PPA, the source file is still active.

Remove the Flatpak Build of MusicBrainz Picard

Remove the app first, then use the app list to confirm that Flatpak no longer sees the Picard package.

sudo flatpak remove org.musicbrainz.Picard -y
flatpak list --app | grep -F org.musicbrainz.Picard || echo "not-installed"
not-installed

Clean up any orphaned Flatpak runtimes afterward to reclaim the extra disk space.

sudo flatpak uninstall --unused -y

To remove personal Picard data too, inspect your home directory first instead of deleting a guessed path. Picard only creates user-data folders after you launch it, and the exact location can differ between the APT and Flatpak builds.

Troubleshoot MusicBrainz Picard on Ubuntu

The two failures that matter most on Ubuntu are missing package sources and missing display access. Both are easy to confirm before you start changing repositories or desktop settings.

Fix Missing MusicBrainz Picard Packages on Ubuntu

Check the current candidate first, then see whether a MusicBrainz source file is active. The second line uses the grep command in Linux with examples to show only MusicBrainz-related source entries.

apt-cache policy picard
grep -R "musicbrainz-developers" /etc/apt/sources.list.d/ 2>/dev/null || echo "PPA not configured"
picard:
   Installed: (none)
   Candidate: 2.13.3-1ubuntu1
PPA not configured

If the Ubuntu package still shows Candidate: (none), enable Universe and Multiverse first and try the repository method again. If you are on Ubuntu 26.04 and the second command prints a MusicBrainz PPA file, remove that source and use the Ubuntu package or Flatpak instead, because the stable PPA does not publish a usable resolute repository.

Fix Display Errors When Launching MusicBrainz Picard on Ubuntu

Picard needs a graphical desktop session, so the usual cannot open display error means it was started outside the normal Ubuntu desktop.

Sign in to the Ubuntu desktop first, then start Picard from the applications menu or from a terminal window opened inside that desktop session. If you launched it from a plain console login, background shell, or another environment without an active graphical session, close that terminal and start Picard again from the desktop.

MusicBrainz Picard on Ubuntu FAQ

Is MusicBrainz Picard available in Ubuntu’s repositories?

Yes. Ubuntu packages Picard in the universe repository on 26.04, 24.04, and 22.04. Ubuntu 26.04 already ships 2.13.3, while 24.04 and 22.04 stay on older releases unless you add the MusicBrainz stable PPA or use Flatpak.

Should I use the Ubuntu package, the MusicBrainz PPA, or Flatpak on Ubuntu?

Use the Ubuntu package when you want the least maintenance, especially on Ubuntu 26.04. Use the MusicBrainz stable PPA on Ubuntu 24.04 or 22.04 when you want a newer APT-managed build. Use Flatpak when you want the same sandboxed release across all supported Ubuntu LTS versions.

Does MusicBrainz Picard have command-line options on Ubuntu?

Yes. The launcher supports checks such as picard --help and picard --version, and MusicBrainz also documents -e and --exec for passing files or commands to a running instance. The tagging workflow still centers on the desktop application rather than a full text-only interface.

Does MusicBrainz offer an official Ubuntu download for Picard?

Not as a standalone Ubuntu .deb. MusicBrainz’s downloads page sends Linux users to Flatpak, Snap, distro repositories, and the Ubuntu PPAs instead. The same page also offers source code archives, but those are meant for source builds rather than the normal Ubuntu desktop install path.

Conclusion

MusicBrainz Picard is ready on Ubuntu with the package format that best fits your setup, whether that means Ubuntu’s own repository, the newer PPA on 24.04 and 22.04, or the Flathub build across all three supported LTS releases. When you want to move from installation into actual tagging, the official Picard documentation is the best next stop.

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

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: