MusicBrainz Picard is the official desktop app for tagging and organizing music files—album art, track titles, artists, and consistent filenames using the MusicBrainz database. On Ubuntu you can install it from universe, the MetaBrainz Snap, or the MusicBrainz stable PPA when you need a newer build than your release ships.
This guide covers install methods, verification, a short first-run tagging workflow, and uninstall steps. Commands were run on Ubuntu 25.04.
Tested on: Ubuntu 25.04 (Plucky Puffin); kernel 6.14.0-37-generic; amd64.
Prerequisites
- Ubuntu 22.04 LTS, 24.04 LTS, or newer (25.04 tested here) on amd64 or arm64.
- sudo for apt and Snap.
- universe enabled for the apt package.
- A desktop session and audio folder you can write to when saving tags.
See check Ubuntu version if you are unsure which release you are on.
Choose an install method
| Method | Best for | Jump to |
|---|---|---|
Ubuntu apt (picard) |
Most users who want Picard with Ubuntu security updates | Method 1 |
Snap (picard) |
Users who want the MetaBrainz-published Snap with automatic refreshes | Method 2 |
| MusicBrainz stable PPA | Users on older LTS when universe’s Picard is behind upstream | Method 3 |
For most users on a current Ubuntu release, apt is enough. Use the PPA on older LTS only when apt-cache policy picard shows a version you cannot work with.
Method 1: Install Picard from Ubuntu apt (recommended)
Refresh and inspect the candidate:
sudo apt update
apt-cache policy picardOn Ubuntu 25.04:
picard:
Candidate: 2.13.3-1
2.13.3-1 500
500 http://archive.ubuntu.com/ubuntu plucky/universe amd64 PackagesInstall:
sudo apt install -y picardVerify:
picard -V
which picardPicard 2.13.3, Python 3.13.3, PyQt 5.15.11, Qt 5.15.15, Mutagen 1.47.0, ...
/usr/bin/picardLaunch from Activities → Picard or run picard in a terminal.
Method 2: Install Picard from Snap
The MetaBrainz Snap is published by the same project that maintains Picard:
sudo snap install picard
snap info picard | head -8Run the Snap build:
snap run picardSnap confinement may limit which folders Picard can read until you connect removable-media interfaces—use Ubuntu Files permissions or snap connect when Picard cannot see external drives.
Method 3: Install Picard from the MusicBrainz stable PPA
On 22.04 or 24.04 when universe lags, add the stable PPA:
sudo apt install -y software-properties-common
sudo add-apt-repository ppa:musicbrainz-developers/stable
sudo apt update
sudo apt install -y picard
picard -VOn 25.04, compare apt-cache policy picard before adding a PPA—universe may already match or exceed what the PPA ships.
First steps after install
- Open Picard and wait for the MusicBrainz server connection (needs outbound HTTPS).
- Add music—drag MP3/FLAC folders into the left Unclustered files area or use File → Add folder.
- Lookup—select files and click Lookup to match releases, or Scan for acoustic fingerprinting (needs
fpcalc; installchromaprint-toolsif Picard asks). - Review matches in the right pane—fix wrong albums before saving.
- Save—enable Options → Metadata → Cover art and filename patterns under Options → File naming if you want Picard to rename files on disk.
Read the official Picard quick start for clustering and scripting details.
Troubleshooting
| Issue | Fix |
|---|---|
picard not in apt |
sudo add-apt-repository universe && sudo apt update |
Wrong package (picard-tools) |
Install picard from universe—the MusicBrainz tagger |
| Snap cannot see USB music | Check Snap permissions; copy files under $HOME or connect interfaces |
| Lookup always fails | Verify HTTPS to musicbrainz.org; check proxy settings |
Uninstall Picard
apt:
sudo apt purge -y picardSnap:
sudo snap remove picardPPA (optional):
sudo add-apt-repository -r ppa:musicbrainz-developers/stable
sudo apt updateSummary
Install Picard on Ubuntu with sudo apt install picard for most users, verify with picard -V, then tag music by lookup or scan and save metadata from MusicBrainz. Use the MetaBrainz Snap or stable PPA when you prefer those update channels on older LTS releases.

