Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't install StarUML in Ubuntu 16.04

I’m using ubuntu 16.04 - 64 bit. I tried to install Start UML with .deb file and got this message from Ubuntu Software:

This software comes from a 3rd party and may contain non-free components

Then I trying to install with dpkg, and got this:

$ sudo dpkg -i StarUML-v2.7.0-64-bit.deb 
Selecting previously unselected package staruml.
(Reading database ... 212003 files and directories currently installed.)
Preparing to unpack StarUML-v2.7.0-64-bit.deb ...
Unpacking staruml (2.7.0) ...
dpkg: dependency problems prevent configuration of staruml:
 staruml depends on libgcrypt11 (>= 1.4.5); however:
  Package libgcrypt11 is not installed.

dpkg: error processing package staruml (--install):
 dependency problems - leaving unconfigured
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Errors were encountered while processing:
 staruml

Could you help me to resolve this issue?

like image 322
Finn Avatar asked May 08 '16 02:05

Finn


People also ask

How do I install StarUML?

StarUML can be downloaded from http://staruml.io/download. Select the OS version suitable for your system and click on the download button. Mine is Windows and is doing it for Windows OS. The size of the file is 127 MB.

What is the latest version of StarUML?

Version 4.0 was released in 2020.


4 Answers

  1. Download libgcrypt11_1.5.3 from: https://launchpad.net/ubuntu/+archive/primary/+files/libgcrypt11_1.5.3-2ubuntu4.2_amd64.deb

  2. Install lib with dpkg sudo dpkg -i libgcrypt11_1.5.3-2ubuntu4.2_amd64.deb

  3. Install StarUML with dpkg sudo dpkg -i StarUML-v2.7.0-64-bit.deb

like image 117
Finn Avatar answered Sep 28 '22 17:09

Finn


Download

wget http://security.ubuntu.com/ubuntu/pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2ubuntu4_amd64.deb

Install lib with dpkg

sudo dpkg -i libgcrypt11_1.5.3-2ubuntu4_amd64.deb

Install StarUML with dpkg

sudo dpkg -i StarUML-v2.8.0-64-bit.deb
like image 26
hanneseilers Avatar answered Sep 28 '22 19:09

hanneseilers


Adding to this topic for Ubuntu 18.04:

  1. Download libgcrypt11 from the provided link:

    https://launchpad.net/ubuntu/+archive/primary/+files/libgcrypt11_1.5.3-2ubuntu4.2_amd64.deb

  2. Now, install it with the command:

    sudo dpkg -i libgcrypt11_1.5.3-2ubuntu4.2_amd64.deb
    
  3. Now, we have to install another dependency, libcurl3. Run the command:

    sudo apt install libcurl3
    
  4. Now, proceed with the installation of StarUML:

    sudo dpkg -i StarUML-v2.8.1-64-bit.deb
    

    Note that the file name will change depending on StarUML version.

That's it. Worked like charm for me.

like image 27
sergiomafra Avatar answered Sep 28 '22 18:09

sergiomafra


I had this error when trying to install the Start UML installation before installing the libgcrypt11_1.5.3-2ubuntu4_amd64.deb package. If you complete the steps above, please run:

sudo apt-get -f install

with me it run

like image 32
Hong Son Nguyen Avatar answered Sep 28 '22 17:09

Hong Son Nguyen