web-dev-qa-db-ja.com

ubuntu 18.04.3にpantheon-filesをインストールする方法

私がしたこと:

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

Ubuntu 18.04.3 MateがPantheon-Filesをインストールしようとするとエラーが発生する:

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

snap、flatpak、appimageなどの他の方法を試してみたが、運が悪かった。

2
K.D.G

まず、ユニバースリポジトリを有効にする必要があります

Sudo add-apt-repository universe

そして、あなたは手動でライブラリの 新しいバージョン をダウンロードしてインストールすることができます

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

そして、パンテオンファイルをインストールします

Sudo apt-get install pantheon-files
0
N0rbert