nvtop command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nvtop: command not found
or when using sudo you get the following error message
sudo: nvtop: command not found
Solutions to nvtop: command not found
How To Fix nvtop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nvtop is provided by nvtop package.
nvtop is:
Nvtop is a ncurses-based GPU monitoring interface which provides information on the GPU states (GPU and memory utilization, temperature, etc) and well as information about the processes executing on the GPUs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install nvtop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nvtop.
sudo apt -y install nvtop
Or if you have aptitude installed you can use the following command.
sudo aptitude install nvtop
Summary
In this tutorial we learn how to fix nvtop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.