cluster3 command not found

In this troubleshooting guide we learn how to fix cluster3 command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

cluster3: command not found

or when using sudo you get the following error message

sudo: cluster3: command not found

Solutions to cluster3: command not found

How To Fix cluster3: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu cluster3 is provided by cluster3 package.

cluster3 is:

The open source clustering software available here contains clustering routines that can be used to analyze gene expression data. Routines for hierarchical (pairwise simple, complete, average, and centroid linkage) clustering, k-means and k-medians clustering, and 2D self-organizing maps are included. The routines are available in the form of a C clustering library, an extension module to Python, a module to Perl, as well as an enhanced version of Cluster, which was originally developed by Michael Eisen of Berkeley Lab. The C clustering library and the associated extension module for Python was released under the Python license. The Perl module was released under the Artistic License. Cluster 3.0 is covered by the original Cluster/TreeView license.

This package only contains the command line and motif gui versions of Cluster 3.0.

To fix this problem, we can install more using the command below.

sudo apt-get -y install cluster3

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install cluster3.

sudo apt -y install cluster3

Or if you have aptitude installed you can use the following command.

sudo aptitude install cluster3

Summary

In this tutorial we learn how to fix cluster3 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.