11-09-2025, 09:07 AM
(This post was last modified: 11-09-2025, 11:17 AM by rich2005.
Edit Reason: typo
)
(11-08-2025, 07:48 PM)teapot Wrote: Using arm64 Raspbian based on Debian 13 (Trixie) how can I get G'MIC within GIMP?
....snip...
Would appreciate help on what to do, do I have to compile it from source code?
There must be an ARM community somewhere but guessing that you will have to compile the gimp_gmic_qt plugin. I can only give a few clues using a Debian 13 VM - AMD/Intel
Lots of dev packages required. Normally install all at once but I think a slow start might help. Just the libgimp3 package which will pull in many of the dependencies.
Code:
sudo apt install libgimp-3.0-devIf all packages are there then you can test in a terminal - run gimptool
If that is working then more dev packages
Code:
sudo apt install git build-essential libcurl4-openssl-dev libfftw3-dev libtiff-dev libjpeg-dev libopenexr-dev libwebp-dev qtbase5-dev qttools5-dev-tools libexiv2-devSome of those already installed - it does tell you, so no duplicates.
Get the gmic package https://gmic.eu/files/source/gmic_3.6.3.tar.gz Unpack it and open a terminal in the src folder
Run make gimp If anything is missing it will stop . With luck it continues, not quick, be patient. Do not worry about warning messages, but any errors and you are sunk. Eventually it completes with a message and you can move the plugin into its own folder in the Gimp plug-ins folder.
Alternatives:
The flathub people say they normally make a flatpak for both AMD and ARM. Maybe there is also a gimp_gmic_qt plugin.
In a terminal flatpak search GIMP might tell you what is available.

