How to Install Picard on Ubuntu

Install MusicBrainz Picard on Ubuntu from universe apt, the official MetaBrainz Snap, or the MusicBrainz stable PPA: verify with picard -V, tag your first album, and uninstall cleanly.

Published

Updated

Read time 4 min read

Reviewed byDeepak Prasad

Install Picard on Ubuntu banner with music tag metadata and Ubuntu orange accent

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.

NOTE
Picard needs a graphical desktop (Wayland or X11). It is not useful on headless servers unless you forward a display.

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.


Refresh and inspect the candidate:

bash
sudo apt update
apt-cache policy picard

On Ubuntu 25.04:

text
picard:
  Candidate: 2.13.3-1
     2.13.3-1 500
        500 http://archive.ubuntu.com/ubuntu plucky/universe amd64 Packages

Install:

bash
sudo apt install -y picard

Verify:

bash
picard -V
which picard
text
Picard 2.13.3, Python 3.13.3, PyQt 5.15.11, Qt 5.15.15, Mutagen 1.47.0, ...
/usr/bin/picard

Launch 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:

bash
sudo snap install picard
snap info picard | head -8

Run the Snap build:

bash
snap run picard

Snap 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:

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

On 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

  1. Open Picard and wait for the MusicBrainz server connection (needs outbound HTTPS).
  2. Add music—drag MP3/FLAC folders into the left Unclustered files area or use File → Add folder.
  3. Lookup—select files and click Lookup to match releases, or Scan for acoustic fingerprinting (needs fpcalc; install chromaprint-tools if Picard asks).
  4. Review matches in the right pane—fix wrong albums before saving.
  5. 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:

bash
sudo apt purge -y picard

Snap:

bash
sudo snap remove picard

PPA (optional):

bash
sudo add-apt-repository -r ppa:musicbrainz-developers/stable
sudo apt update

Summary

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.


References


Frequently Asked Questions

1. How do I install Picard on Ubuntu?

Run sudo apt update && sudo apt install -y picard from universe, or sudo snap install picard for the MetaBrainz Snap. Verify with picard -V and launch from the app menu or picard in a terminal.

2. Is Picard the same as python-picard?

On Ubuntu the desktop app package is picard (MusicBrainz tagger). picard-tools is unrelated—it manipulates SAM/BAM bioinformatics files. Install picard from universe or Snap for music tagging.

3. Do I need to install Python separately for Picard?

No for apt or Snap installs—they bundle dependencies. Ubuntu picard pulls Python 3 and PyQt via package dependencies automatically.

4. Which Picard install method is newest on Ubuntu?

Ubuntu 25.04 universe ships Picard 2.13.3. The MetaBrainz Snap and MusicBrainz stable PPA may ship newer builds on older LTS releases when universe lags.

5. How do I tag music files with Picard after install?

Launch Picard, drag audio files or folders into the left pane, click Lookup or Scan, match MusicBrainz releases, then Save. Enable options in File menu for renaming and moving files.

6. How do I uninstall Picard from Ubuntu?

For apt: sudo apt purge picard. For Snap: sudo snap remove picard. Remove the MusicBrainz PPA with sudo add-apt-repository -r if you added it.
Deepak Prasad

R&D Engineer

Founder of GoLinuxCloud with more than 15 years of expertise in Linux, Python, Go, Laravel, DevOps, Kubernetes, Git, Shell scripting, OpenShift, AWS, Networking, and Security. With extensive …