When attempting to install Dolphin-Emu, I have come across a un-met dependences that are preventing the installation. I installed Dolphin-Emu as a PPA, so I could manually install the package. Every time I attempt to install, this is the code that I am using, and the message I get.
$ sudo apt-get install dolphin-emu
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:
dolphin-emu : Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04 is to be installed
E: Unable to correct problems, you have held broken packages.
Any and all help would be appriciated.
Related question: http://stackoverflow.com/questions/23035310/ubuntu-unable-to-correct-problems-you-have-held-broken-packages
– tniles Jan 17 '16 at 01:26sudo apt-get update
andsudo apt-get upgrade
steps? This looks like it is recommended from the online install guide as well. – tniles Jan 17 '16 at 01:48sudo apt-get update
andsudo apt-get upgrade
and I have the following packages being held backlibatomic1 libgfortran3 libgomp1 libitm1 libquadmath0 libstdc++6 libstdc++6:i386 libtsan0
– Toon9110 Jan 17 '16 at 02:07apt-get clean
andapt-get autoclean
commands. Usually betweenupdate
,upgrade
, andclean
andautoclean
things just work. – tniles Jan 18 '16 at 04:26cat /etc/lsb-release
and paste the output in your post. – tniles Jan 18 '16 at 04:28sudo apt-get -f install
, as suggested here, also good reading for your issue. – tniles Jan 18 '16 at 04:38