bpytop command not found
In this troubleshooting guide we learn how to fix bpytop command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
bpytop: command not found
or when using sudo you get the following error message
sudo: bpytop: command not found
Solutions to bpytop: command not found
How To Fix bpytop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bpytop is provided by bpytop package.
bpytop is:
Resource monitor that shows usage and stats for processor, memory, disks, network and processes. bpytop includes:
- Easy to use, with a game inspired menu system.
- Full mouse support, all buttons with a highlighted key is clickable and mouse scroll works in process list and menu boxes.
- Fast and responsive UI with UP, DOWN keys process selection.
- Function for showing detailed stats for selected process.
- Ability to filter processes, multiple filters can be entered.
- Easy switching between sorting options.
- Send SIGTERM, SIGKILL, SIGINT to selected process.
- UI menu for changing all config file options.
- Auto scaling graph for network usage.
- Shows current read and write speeds for disks
Python port of bashtop.
To fix this problem, we can install more using the command below.
sudo apt-get -y install bpytop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bpytop.
sudo apt -y install bpytop
Or if you have aptitude installed you can use the following command.
sudo aptitude install bpytop
Summary
In this tutorial we learn how to fix bpytop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.