lbt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lbt: command not found
or when using sudo you get the following error message
sudo: lbt: command not found
Solutions to lbt: command not found
How To Fix lbt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lbt is provided by lbt package.
lbt is:
This software converts a linear temporal logic (ltl) formula to a generalised Büchi automaton. The resulting automaton may be used, for instance, in model checking, where it represents a property to be verified from a model (e.g. a Petri net).
To fix this problem, we can install more using the command below.
sudo apt-get -y install lbt
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lbt.
sudo apt -y install lbt
Or if you have aptitude installed you can use the following command.
sudo aptitude install lbt
Summary
In this tutorial we learn how to fix lbt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.