web-dev-qa-db-fra.com

comment installer des fichiers panthéon sur ubuntu 18.04.3

ce que j'ai fait:

$ Sudo add-apt-repository ppa:elementary-os/stable
$ Sudo apt update

Ubuntu 18.04.3 Mate essayez d'installer Pantheon-Files mais obtenez une erreur:

$ Sudo apt-get install -f pantheon-files

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:
 pantheon-files : Depends: libcloudproviders0 (>= 0.3.0) but it is not going to be installed
                  Recommends: contractor but it is not going to be installed
                  Recommends: tumbler-plugins-extra but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

avoir bien essayé autrement comme snap ou flatpak ou appimage mais pas de chance.

2
K.D.G

Au début, vous devez activer le référentiel d'univers avec

Sudo add-apt-repository universe

puis vous pouvez télécharger et installer manuellement version plus récente de la bibliothèque avec

cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/libc/libcloudproviders/libcloudproviders0_0.3.0-1_AMD64.deb
Sudo apt install ./libcloudproviders0_0.3.0-1_AMD64.deb

puis installez les fichiers panthéon avec

Sudo apt-get install pantheon-files
0
N0rbert