To find out the cause for troubles in GIMP it’s sometimes necessary to find out some internal information from GIMP. You can get them with the following steps, especially if you are asked for it on Gitlab:
Open the Windows command prompt window:
Windows Vista and Windows 7 users: Click start, type cmd and then press
Windows 8 users: on the start screen with the tiles: enter cmd and then press
Windows 10 users: Click start, type cmd and then press
Windows 11 users: Click start, type cmd in the search bar. You will see the command prompt appear as the best match. click on it or hit Enter to open it.
A black window will open - the Windows command prompt window.
"c:\program files\gimp 2\bin\gimp-2.10" --verbose --console-messages
After a moment a black command prompt window will open, having the title ‘GIMP output. You can minimize this window, but don’t close it’. Note that the start might take a bit longer because GIMP now writes output data.
When the GIMP application has started, execute the steps to reproduce the error.
Select the GIMP output and copy it the clipboard: click on the GIMP icon in the upper left window corner, then Edit/Select All, then Edit/Copy.
Open your Internet browser, open your particular bug and paste the message.
Open a terminal window.
Enter gimp --verbose --console-messages
Note that the start might take a bit longer because GIMP now writes output data.
When the GIMP application has started, execute the steps to reproduce the error.
Select the GIMP output from the terminal window and copy it the clipboard.
Open your Internet browser, open your particular bug and paste the message.
Copy and paste all the commands
flatpak list |grep org.gimp.GIMP
This command returns information about GIMP-related packages.
You need to check where GIMP is installed, as shown in the column Installation. This way you will know whether to install or update in --system
or --user
.
If a flatpak command asks where to install a component, always choose the same installation target.
You must therefore follow the instructions below depending on the version of GIMP you have installed
flatpak install flathub org.gimp.GIMP.Debug
In the command below, replace --system
with --user
if GIMP was installed as “user” installation (cf. result of above command).
FLATPAK_SDK=`flatpak --system remote-info flathub org.gimp.GIMP//stable | grep Sdk: |sed 's/^ *Sdk: *\(.*\)/\1/'`
FLATPAK_SDK_DEBUG=`echo $FLATPAK_SDK | sed 's$\([^/]*\)/\(.*\)$\1.Debug/\2$'`
flatpak install flathub $FLATPAK_SDK $FLATPAK_SDK_DEBUG
Then run GIMP with the command
flatpak run --devel org.gimp.GIMP
try to replicate the crash and add the obtained stacktrace to the issue report
flatpak install flathub-beta org.gimp.GIMP.Debug//beta
In the command below, replace --system
with --user
if GIMP was installed as “user” installation (cf. result of above command).
FLATPAK_SDK=`flatpak remote-info flathub-beta org.gimp.GIMP//beta | grep Sdk: |sed 's/^ *Sdk: *\(.*\)/\1/'`
FLATPAK_SDK_DEBUG=`echo $FLATPAK_SDK | sed 's$\([^/]*\)/\(.*\)$\1.Debug/\2$'`
flatpak install flathub $FLATPAK_SDK $FLATPAK_SDK_DEBUG
then run GIMP with the command
flatpak run --devel org.gimp.GIMP//beta
try to replicate the crash and add the obtained stacktrace to the issue report
flatpak install gnome-nightly org.gimp.GIMP.Debug
flatpak remote-info gnome-nightly org.gimp.GIMP//master | grep Sdk: |sed 's/^ *Sdk: *\(.*\)/\1/'
flatpak install gnome-nightly org.gnome.Sdk.Debug//master
then run GIMP with the command
flatpak run --devel org.gimp.GIMP//nightly
try to replicate the crash and add the obtained stacktrace to the issue report
Go to Applications/Utilities, then Terminal.
Enter /Applications/GIMP.app/Contents/MacOS/gimp --verbose --console-messages
Note that the start might take a bit longer because GIMP now writes output data.
When the GIMP application has started, execute the steps to reproduce the error.
Select the GIMP output from the terminal window and copy it the clipboard. In the Mac OS X terminal use Edit/Select All, then Edit/Copy.
Open your Internet browser, open your particular bug and paste the message.