5

I just upgraded to Ubuntu 20.04 and wanted to try the Deepin Desktop Environment which looks great. I added the PPA (ppa:leaeasy/dde) to the known repositories as recommended. But there are some dependencies that cannot be resolved when trying apt install dde.

The package qtbase-abi-5-9-5 cannot be installed: It looks like to be a virtual package that points to libqt5core5a which is already installed. The real package is installed but the virtual package is not referenced as installed.

This library is used by Plasma and many others so I don't really want to uninstall/reinstall it with the virtual package.

Is there an easy workaround to get the qtbase-abi-5-9-5 package "installed" or bypass this dependency when installing DDE?

EDIT: apt-cache policy dde

  dde:
  Installed: (none)
  Candidate: 15.4+16
  Version table:
     15.4+16 500
        500 http://ppa.launchpad.net/leaeasy/dde/ubuntu bionic/main amd64 Packages
        500 http://ppa.launchpad.net/leaeasy/dde/ubuntu bionic/main i386 Packages
N0rbert
  • 103,263
MatPy
  • 85
  • 1
  • 2
  • 8

3 Answers3

6

Update 20200515:

UbuntuDDE team has provided stable PPA. You can install packages from it:

sudo add-apt-repository ppa:ubuntudde-dev/stable
sudo apt-get install ubuntudde-dde

Tried to fix this in a fast way on VM, downloaded a dozen of deb-packages including libqt5core5a which provides qtbase-abi-5-9-5 and got serious dependency issue. Manual installation of packages from different releases may harm your system, so it is safer to revert these changes and to wait for packages with DDE specially prepared for 20.04 LTS.

Also I have searched the LaunchPad.net and found other PPA from Ubuntu DDE team - ppa:openarun/dde-dev. It allows to install DDE on Focal.

So you have to remove other PPA(s) by commands like:

sudo apt-get install ppa-purge
sudo ppa-purge ppa:leaeasy/dde

and add this PPA to the system

sudo add-apt-repository ppa:openarun/dde-dev
sudo apt-get install ubuntudde-*

and then it should work:

Ubuntu DDE login

Ubuntu DDE desktop

N0rbert
  • 103,263
4

There is a stable UbuntuDDE release for focal fossa here: https://launchpad.net/~ubuntudde-dev/+archive/ubuntu/stable

Use:

sudo add-apt-repository ppa:ubuntudde-dev/stable
sudo apt-get update

I have tried it out on my focal installation successfully.

Danny
  • 41
4
sudo add-apt-repository ppa:ubuntudde-dev/stable
sudo apt update
sudo apt install ubuntudde-dde
Testato
  • 41