paraclu command not found

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

Introduction

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

paraclu: command not found

or when using sudo you get the following error message

sudo: paraclu: command not found

Solutions to paraclu: command not found

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

In Ubuntu paraclu is provided by paraclu package.

paraclu is:

Paraclu finds clusters in data attached to sequences. It was first applied to transcription start counts in genome sequences, but it could be applied to other things too.

Paraclu is intended to explore the data, imposing minimal prior assumptions, and letting the data speak for itself.

One consequence of this is that paraclu can find clusters within clusters. Real data sometimes exhibits clustering at multiple scales: there may be large, rarefied clusters; and within each large cluster there may be several small, dense clusters.

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

sudo apt-get -y install paraclu

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

You can also use apt command to install paraclu.

sudo apt -y install paraclu

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

sudo aptitude install paraclu

Summary

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