无法在 Ubuntu 20.04 上安装 Modelio Open SOurce 4.1

无法在 Ubuntu 20.04 上安装 Modelio Open SOurce 4.1

我遵循的步骤:我从 Modelio 网站下载了该软件。打开终端。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

它在我的计算机上运行。

相关内容