debianbts command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
debianbts: command not found
or when using sudo you get the following error message
sudo: debianbts: command not found
Solutions to debianbts: command not found
How To Fix debianbts: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu debianbts is provided by python3-debianbts package.
python3-debianbts is:
This package provides the debianbts module, which allows one to query Debian’s BTS via it’s SOAP-interface and returns the answer in Python’s native data types.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-debianbts
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-debianbts.
sudo apt -y install python3-debianbts
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-debianbts
Summary
In this tutorial we learn how to fix debianbts command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.