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 !!
2 Answers
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
wget -c
wget -c
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 As of 30/01/2022 for Ubuntu 20.04 the library
libicu60_60.2-3ubuntu3.1_amd64.debisn't available anymore and it's replaced by
libicu60_60.2-3ubuntu3.2_amd64.debshould be used. So the reponse should now be
wget -c
wget -c
wget -c
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.debIt works on my machine.