
私が従う手順: ModelioのWebサイトからソフトウェアをダウンロードしました。ターミナルを開きます。cdでダウンロードに移動し、lsでダウンロードの内容を一覧表示し、sudo dpkg -iでソフトウェア名を入力します。
次のようなメッセージが表示されます: dpkg: パッケージ modelio-open-source4.1 の処理中にエラーが発生しました (--install): 依存関係の問題 - 未構成のままにします
また、Ubuntu のソフトウェアを使用して GUI 領域で試してみましたが、次の結果が得られました。
modelio-open-source4.1 をインストールできません: 次のパッケージの依存関係が満たされていません
それをどうやって解決するのでしょうか?
前もって感謝します !!
答え1
18.04 LTS リポジトリから依存関係をダウンロードし、以下のコマンドを使用して APT を使用して 20.04 LTS に ModelIO パッケージとともにインストールする必要があります。
cd ~/Downloads # use correct folder here where ModelIO deb is stored
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/w/webkitgtk/libwebkitgtk-1.0-0_2.4.11-3ubuntu3_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/w/webkitgtk/libjavascriptcoregtk-1.0-0_2.4.11-3ubuntu3_amd64.deb
wget -c http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu60_60.2-3ubuntu3.1_amd64.deb
sudo apt-get install ./libwebkitgtk-1.0-0_2.4.11-3ubuntu3_amd64.deb ./libjavascriptcoregtk-1.0-0_2.4.11-3ubuntu3_amd64.deb ./libicu60_60.2-3ubuntu3.1_amd64.deb
sudo apt-get install ./modelio-open-source_4.1.0_ubuntu_amd64.deb
答え2
2022年1月30日現在、Ubuntu 20.04のライブラリ
libicu60_60.2-3ubuntu3.1_amd64.deb
はもう利用できず、代わりに
libicu60_60.2-3ubuntu3.2_amd64.deb
使用する必要があります。したがって、応答は次のようになります
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/w/webkitgtk/libwebkitgtk-1.0-0_2.4.11-3ubuntu3_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/w/webkitgtk/libjavascriptcoregtk-1.0-0_2.4.11-3ubuntu3_amd64.deb
wget -c http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu60_60.2-3ubuntu3.2_amd64.deb
sudo apt-get install ./libwebkitgtk-1.0-0_2.4.11-3ubuntu3_amd64.deb ./libjavascriptcoregtk-1.0-0_2.4.11-3ubuntu3_amd64.deb ./libicu60_60.2-3ubuntu3.2_amd64.deb
私のマシンでは動作します。