umlet command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
umlet: command not found
or when using sudo you get the following error message
sudo: umlet: command not found
Solutions to umlet: command not found
How To Fix umlet: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu umlet is provided by umlet package.
umlet is:
UMLet is a UML tool aimed at providing a fast way of drawing UML diagrams. UML elements are modified using text input instead of pop-up dialogs. Elements can be modified and used as templates; this way, users can easily tailor UMLet to their modeling needs. UMLet supports a variety of UML diagram types: class diagrams, use case diagrams, sequence diagrams, state diagrams, deployment diagrams, activity diagrams, etc.
UMLet can only be used for drawing UML diagrams, it does not support code export or the XMI format. UMLet allows one to export diagrams as images or PDF.
To fix this problem, we can install more using the command below.
sudo apt-get -y install umlet
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install umlet.
sudo apt -y install umlet
Or if you have aptitude installed you can use the following command.
sudo aptitude install umlet
Summary
In this tutorial we learn how to fix umlet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.