tda command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tda: command not found
or when using sudo you get the following error message
sudo: tda: command not found
Solutions to tda: command not found
How To Fix tda: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tda is provided by devtodo package.
devtodo is:
Manipulate and display a hierarchical (i.e. “subtasks”) and prioritised list of things with a coloured command line interface.
Using devtodo’s output formatting features, it is possible to convert the todo list into almost any text format.
Devtodo comes with XSLT stylesheets to convert XML .todo files to HTML and PDF, have a look at /usr/share/devtodo/.
To fix this problem, we can install more using the command below.
sudo apt-get -y install devtodo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install devtodo.
sudo apt -y install devtodo
Or if you have aptitude installed you can use the following command.
sudo aptitude install devtodo
Summary
In this tutorial we learn how to fix tda command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.