boolector command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
boolector: command not found
or when using sudo you get the following error message
sudo: boolector: command not found
Solutions to boolector: command not found
How To Fix boolector: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu boolector is provided by boolector package.
boolector is:
Boolector is an efficient SMT solver for the quantifier-free theory of bit-vectors in combination with the quantifier-free extensional theory of arrays.
To fix this problem, we can install more using the command below.
sudo apt-get -y install boolector
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install boolector.
sudo apt -y install boolector
Or if you have aptitude installed you can use the following command.
sudo aptitude install boolector
Summary
In this tutorial we learn how to fix boolector command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.