2

i'm trying to setup dolphin emulator on ubuntu, as it was working fine on manjaro. the dolphin stable version is working fine but i need the development version for vulkan support i believe. tried inputting:

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

as explained in dolphin wiki

but i get an error outputted: Unable to locate package dolphin-emu-master

kubuntu 20.04. the stable version installs just fine both via terminal and store GUI

N0rbert
  • 99,918

2 Answers2

2

Don't use the PPA. Use the snap package instead.

sudo snap install dolphin-emulator --edge

or alternatively to install the stable version of Dolphin Emulator:

sudo snap install dolphin-emulator
karel
  • 114,770
DFOXpro
  • 228
0

Unfortunately, the PPA you used does not contain a valid version for *ubuntu 20.04, the last one indicated is 18.10

At the moment, the only way to install the development version, seems to be to compile the source code as described in the GIT repository: https://github.com/dolphin-emu/dolphin#building-for-linux-and-macos.

Clover
  • 304