GIMP, the popular free open-source image editor, finally released new 3.0 stable version. Here’s how to install it in Ubuntu using PPA.
So, what exactly is a “release candidate” (RC)? A release candidate is something that might be ready to be GIMP 3.0, but we want the larger community to test it first and report any problems they find.
According to the announcement, it’s time to try it out for those who are interested in the new release.
What’s New in GIMP 3.0
As you see in the top, the release introduced modern new app logo developed by Aryeom, as well as new startup splash screen created by Sevenix.
The legacy tool icons have been updated from PNG to SVG format, which look great on HiDPI screens. There are as well fixes and improvements to color space, that ensure XCF files created in old release will render as the same when opened in 3.0.
The public API has been finalized in the release. It added gimp-context-get-emulate-brush-dynamics
and gimp-context-set-emulate-brush-dynamics
for scripting and plug-in developing, and consolidated various gauss
functions into single plug-in-gauss
.
Non-Destructive Editing filters now has “Merge Filters” option at the bottom of the dialog. With it enabled, the filter will be immediately merged down after it is committed. Though, filters can not be applied destructively on layer groups.
The RC release also restores the ability to use the mouse middle scroll wheel to flip through the different dock-able dialogue tabs. The BMP format now supports 64 bits per pixel images. As well, it supports for loading layers from TIFFs saved in Sketchbook format.
Other changes include:
-
- Implemented storing version of filters in GIMP’s XCF project files.
- New GEGL filters: Inner Glow, Bevel, GEGL Styles.
- Babl gains new conversion processes between RGB and HSL color models, memory leak fixes.
And more.
How to Install GIMP 3.0 (stable updated) in Ubunu
GIMP provides Flatpak and AppImage packages for Linux, you may see this tutorial instead for the official packages.
Install GIMP 3.0 via Ubuntu PPA
For those who prefer the native .deb
package, I’ve built GIMP 3.0 into this unofficial Ubuntu PPA with Ubuntu 22.04, Ubuntu 24.04, and Ubuntu 24.10 support on amd64
, arm64
/armhf
CPU platforms.
NOTE: Ubuntu 20.04 is NOT supported due to outdated glib-2.0 library. Keep an eye on this PPA if you do want GIMP 3.0 on 20.04.
1. First, press Ctrl+Alt+T
on keyboard to open up a terminal window. When it opens, run the command below to add the PPA:
sudo add-apt-repository ppa:ubuntuhandbook1/gimp-3
Type user password when it asks (no asterisk feedback) for sudo authentication and hit Enter to continue.
2. It automatically refreshes package cache after adding PPA, but Linux Mint users may need to do the job manually by running the command below:
sudo apt update
3. Finally, install or upgrade GIMP 3.0 by running command:
sudo apt install gimp libgegl-0.4-0t64 libbabl-0.1-0
The gir1.2-gegl-0.4
, gir1.2-gimp-3.0
, gir1.2-babl-0.1
packages are required (the last command should install them as dependencies), or you’ll get issue at app startup.
NOTE: for Ubuntu 22.04 with Ubuntu Pro enabled, use the command below instead to workaround dependency issue:
sudo apt install gimp libgegl-0.4-0t64 libbabl-0.1-0 libheif1/jammy
Uninstall GIMP 3.0
If you installed the image editor through Flatpak package, then use the command below to uninstall:
flatpak uninstall --delete-data org.gimp.GIMP//beta
For the native .deb package, run the command below instead to uninstall:
sudo apt remove --autoremove gimp libgegl-0.4-0t64
Also remove the PPA either by deleting source line through “Software & Updates” utility under “Other Software” tab, or by running command:
sudo add-apt-repository --remove ppa:ubuntuhandbook1/gimp-3
While, Linux Mint user also need to run sudo apt update
to manually refresh cache.
100% agree about the abominable FlatPack and AppImage things – thanks for the Deb. Why do people support such bloated crap?