Debianベースのシステムにlibwebkitgtk-1.0-0をインストールする方法は?

Debianベースのシステムにlibwebkitgtk-1.0-0をインストールする方法は?

dpkg -i を使用して .deb パッケージをインストールしようとすると、次のエラーが発生します。

    dpkg: dependency problems prevent configuration of modelio-open-source4.1:
    modelio-open-source4.1 depends on libwebkitgtk-1.0-0; however:
    Package libwebkitgtk-1.0-0 is not installed.

だからlibwebkitgtk-1.0-0をインストールする必要があるようです。そのため、実行するとsudo apt install libwebkitgtk-1.0-0次のような結果が出力されます。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libwebkitgtk-1.0-0 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libwebkitgtk-1.0-0' has no installation candidate

どうすれば解決できますか?学校に必ず設置する必要がありますが、時間があまりにも迫っています。

ベストアンサー1

Ubuntuではユニバースストアを有効にする必要があります。

sudo add-apt-repository universe
sudo apt update
sudo apt install libwebkitgtk-1.0-0

依存関係のリスト。

システム要件:

Modelio 4 は Redhat Enterprise Linux 7/8、Debian 9/10、Ubuntu 16.04/18.04 LTS と互換性があります。

Modelio 3 は Redhat Enterprise Linux 6/7、Debian 7/8/9、Ubuntu 14.04/16.04 LTS と互換性があります。

PopOSでは、18.04 LTSユニバースストアを有効にするにはこのバージョンが必要です。

sudo add-apt-repository "deb http://apt.pop-os.org/ubuntu $(lsb_release -cs) main universe"

おすすめ記事