web-dev-qa-db-ja.com

Ubuntu 19.04にInkscapeをインストールできません

Discover(KDEプラズマストア)からUbuntu 19.04にInkScapeをインストールしようとしていますが、エラーが表示されます。

Dependencies resolution failed

PPAからインストールしてみた

Sudo add-apt-repository ppa:inkscape.dev/stable
Sudo apt install inkscape -y

しかし、それでもまだ満たされていない依存関係が表示されます。このパッケージまたは依存関係は満たされていない。

The following packages have unmet dependencies:
inkscape : Depends: libpoppler82 (>= 0.71.0) but it is not installable
            Recommends: python-uniconvertor but it is not installable
E: Unable to correct problems, you have held broken packages.

インストール方法が分からない。どんな助けでもありがたいです。

4
Arman Khan

disco repositoriesppa はどちらも現在バージョン0.92.4を提供しています。
そのため、PPAは不要です 削除

Sudo add-apt-repository -r ppa:inkscape.dev/stable

次に、リポジトリを更新します。

Sudo apt update

そして、いくつかの潜在的な依存関係の問題を修正する必要はないかもしれませんが、実行しても常に安全です):

Sudo apt install -f

次に、inkscapeをインストールします。

Sudo apt install inkscape
8
pLumo