tre command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tre: command not found
or when using sudo you get the following error message
sudo: tre: command not found
Solutions to tre: command not found
How To Fix tre: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tre is provided by tre-command package.
tre-command is:
A replacement for tree command that uses git ls-files as source of file when possible.
tre can also create shell aliases that, when executed, opens the file associated with it with the default editor.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tre-command
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tre-command.
sudo apt -y install tre-command
Or if you have aptitude installed you can use the following command.
sudo aptitude install tre-command
Summary
In this tutorial we learn how to fix tre command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.