$ wget -qO - https://azlux.fr/repo.gpg.key | sudo apt-key add -
After adding the Azlux repository, update the apt package list by running the following command:
$ sudo apt update
Now install the BpyTOP tool using the command below:
$ sudo apt install bpytop
Another method to install BpyTOP is to use the pip library. Therefore, install pip by executing the command given below:
$ sudo apt install python3-pip
After the installation of pip3 is complete, install the BpyTOP tool using the python-pip module as follows:
$ sudo pip3 install bpytop
Check the installed BpyTOP version by running the following command:
$ BpyTOP --version
Sometimes Linux users prefer to use the Git repository to install the software. In this case, the BpyTOP tool can be installed on your Ubuntu system by compiling the source code with the Git repository. First, make sure that the Git tool is installed on your Ubuntu system. Otherwise, you can install it by executing the command below:
$ sudo apt-get install git
Then clone the package using the Git repository from Github. The following commands will show you how to install the BpyTOP utility via the Git repository:
$ git clone https://github.com/aristocratos/bpytop.git
Navigate to the BpyTOP directory and install the packages using the command below:
$ cd bpytop $ sudo make install
You can also use the snap application to install the BpyTOP tool on the Ubuntu 20.04 system. So install the snapd package and then install the BpyTOP utility by running the command below:
$ sudo apt install snapd
$ sudo snap install bpytop
If you no longer need the BpyTOP tool in the Ubuntu 20.04 environment, you can simply uninstall it to free up space on your system.
If BpyTOP was installed with the package manager, you can uninstall it with the following command:
$ sudo apt purge --remove bpytop
Remove the associated repository from your system as follows:
$ sudo rm -rf /etc/apt/sources.list.d/azlux.list
Remove the package via Snap:
$ sudo snap remove bpytop
Uninstall BpyTOP with pip:
$ sudo pip3 uninstall bpytop
Enter the command BpyTOP in the terminal to start the user interface as follows:
$ bpytop
The following BpyTOP user interface will be displayed in the terminal window, where you can view details about the CPU, memory and running process, etc.
Press “Esc” to switch to the main menu and the following options will be displayed on the interface:
Click “Options” and the following settings will be displayed in the BpyTOP window:
In the screenshot above, you can change the highlighted options. For example, we want to change the default theme of the user interface. Click on the forward arrow and set the desired theme as follows:
Press “Help” again and the following settings will be displayed on the BpyTOP interface:
That’s it for the Bpytop demo. We have installed the resource monitoring tool bpytop on the Ubuntu 20.04 distribution via the command line. We also discussed the steps to uninstall bpytop in all possible ways. Now I hope you can install and use the bpytop tool on the Ubuntu system by using any of the above methods. With the bpytop tool, the system administrator can easily monitor all system resources. You can find more help on installing the bpytop tool on GitHub.