utop-full command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
utop-full: command not found
or when using sudo you get the following error message
sudo: utop-full: command not found
Solutions to utop-full: command not found
How To Fix utop-full: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu utop-full is provided by utop package.
utop is:
utop is an improved toplevel for OCaml. It can run in a terminal or in Emacs. It supports line edition, history, real-time and context sensitive completion, colors, and more.
To fix this problem, we can install more using the command below.
sudo apt-get -y install utop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install utop.
sudo apt -y install utop
Or if you have aptitude installed you can use the following command.
sudo aptitude install utop
Summary
In this tutorial we learn how to fix utop-full command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.