I am trying to install GIMP on an Ubuntu 20.04 fresh install. Unfortunately, I get this:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
gimp : Depends: libgimp2.0 (>= 2.10.18) but it is not going to be installed
Depends: libgimp2.0 (<= 2.10.18-z) but it is not going to be installed
Depends: libgegl-0.4-0 (>= 0.4.22) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Thanks, I really appreciate your assistance!
sudo dpkg --configure -a && sudo apt update --fix-missing -y && sudo apt install -f -y && sudo apt full-upgrade -y
– Raffa Apr 22 '20 at 00:19sudo aptitude install libgegl-0.4-0
. I did not accept the first solution (basically, do nothing), but the second solution was to install a newer version with some deps. I accepted it and was then able to install Gimp, although it's still listed as upgradable. – MasterAM Apr 27 '20 at 19:14