jasmin command not found

In this troubleshooting guide we learn how to fix jasmin command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

jasmin: command not found

or when using sudo you get the following error message

sudo: jasmin: command not found

Solutions to jasmin: command not found

How To Fix jasmin: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu jasmin is provided by jasmin-sable package.

jasmin-sable is:

Jasmin is a Java ASseMbler INterface. It takes ASCII descriptions of Java classes, written in the Java Virtual Machine instruction set in an assembler-like syntax.

Jasmin converts these input files into binary Java class files (.class) suitable for executing on an Java Virtual Machine.

To fix this problem, we can install more using the command below.

sudo apt-get -y install jasmin-sable

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install jasmin-sable.

sudo apt -y install jasmin-sable

Or if you have aptitude installed you can use the following command.

sudo aptitude install jasmin-sable

Summary

In this tutorial we learn how to fix jasmin command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.