treeview command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
treeview: command not found
or when using sudo you get the following error message
sudo: treeview: command not found
Solutions to treeview: command not found
How To Fix treeview: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu treeview is provided by treeview package.
treeview is:
TreeView creates a matrix-like display of expression data, known as Eisen clustering. The original implementation was a Windows program named TreeView by Michael Eisen. This TreeView package, sometimes also referred to as jTreeView, was rewritten in Java under a free license.
Java TreeView is an extensible viewer for microarray data in PCL or CDT format.
To fix this problem, we can install more using the command below.
sudo apt-get -y install treeview
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install treeview.
sudo apt -y install treeview
Or if you have aptitude installed you can use the following command.
sudo aptitude install treeview
Summary
In this tutorial we learn how to fix treeview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.