Problema ao instalar dependências do Dolphin-emu, Unmet

1

Ao tentar instalar o Dolphin-Emu, deparei com dependências não atendidas que estão impedindo a instalação. Eu instalei o Dolphin-Emu como um PPA, para poder instalar manualmente o pacote. Toda vez que eu tento instalar, este é o código que estou usando e a mensagem que recebo.

$ 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.

Toda e qualquer ajuda seria fornecida.

    
por Toon9110 17.01.2016 / 02:17

2 respostas

1

De acordo com o guia de instalação disponível on-line, o seguinte deve funcionar:

sudo add-apt-repository ppa:dolphin-emu/ppa
sudo apt-get update
sudo apt-get install dolphin-emu-master

Você também pode tentar um sudo apt-get upgrade imediatamente após o comando update (esses dois geralmente são bons comandos para tentar quando o apt está se comportando mal / tendo problemas no ubuntu).

UPDATE: também de acordo com o guia de instalação do dolphin, se estiver executando o Ubuntu 12.04 ou 14.04, execute estes comandos primeiro:

sudo add-apt-repository ppa:dolphin-emu/gcc-for-dolphin
sudo apt-get update
    
por tniles09 17.01.2016 / 02:50
0

Antes de tentar outra coisa, tente seguir as instruções da resposta anterior ppa, ele disse:

Unofficial builds for Dolphin Wii/Gamecube Emulator.

Install the dolphin-emu package for the latest stable release of Dolphin.

Install the dolphin-emu-master package for weekly builds that include the latest upstream changes from git.

The dolphin-emu-triforce package will allow you play Triforce games, as well Wii/Gamecube games. It's based on the old Triforce fork (4.0-315).

You'll need to enable the Universe repo before install Dolphin.

For Ubuntu 12.04 and 14.04 users: dolphin-emu-master needs an updated libstdc++6 (>=4.9), so install this PPA first:
https://launchpad.net/~dolphin-emu/+archive/ubuntu/gcc-for-dolphin
It will update libstdc++6 in your system to version 4.9.2, so be careful.

If you found a problem to update libstdc++6, use this PPA instead:

https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test

THERE'S NO 32-bit (i386) BUILDS ANYMORE: https://dolphin-emu.org/blog/2014/05/19/obituary-32bit/

ARMv8/AArch64/arm64 packages now ;)

então se você tiver problema com o libstdc ++ 6 tente:

  1. siga o aviso e adicione ppa usando add-apt-repository do link
  2. do sudo apt-get update
  3. do sodo apt-get upgrade

tente instalá-lo novamente, se isso não funcionar tente:

  1. adicione o ppa de link
  2. , em seguida, sudo apt-get update e sudo apt-get upgrade

tente instalar dolphin-emu novamente. mas, como o readme disse, isso irá atualizar o libstdc ++ 6 para a versão 4.9.2, então cabe a você.

    
por whale_steward 29.04.2016 / 03:08