Score:2

Unable to install Modelio Open SOurce 4.1 on Ubuntu 20.04

kr flag
DBG

Steps I follow: I have downloaded the software from Modelio's website. Open the terminal. cd to Downloads ls to list Download's content sudo dpkg -i and the software's name

I get this: dpkg: error processing package modelio-open-source4.1 (--install): dependency problems - leaving unconfigured

I also have tried in the GUI area by using Ubuntu's Software and I get:

Unable to install modelio-open-source4.1: The following packages have unmet dependencies

How to solve that ?

THANKS IN ADVANCE !!

Score:2
zw flag

You have to download the dependencies from 18.04 LTS repository and install them with ModelIO package on 20.04 LTS using APT by using commands below:

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
Score:1
ng flag

As of 30/01/2022 for Ubuntu 20.04 the library

libicu60_60.2-3ubuntu3.1_amd64.deb

isn't available anymore and it's replaced by

libicu60_60.2-3ubuntu3.2_amd64.deb

should be used. So the reponse should now be

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

It works on my machine.

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.