hpcc command not found

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

Introduction

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

hpcc: command not found

or when using sudo you get the following error message

sudo: hpcc: command not found

Solutions to hpcc: command not found

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

In Ubuntu hpcc is provided by hpcc package.

hpcc is:

The High Performance Computing (HPC) Challenge benchmark runs a suite of 7 tests that measure the performance of CPU, memory and network for HPC clusters. Amongst others, it includes the High-Performance LINPACK (HPL) benchmark, used by the Top500 ranking (http://www.top500.org/).

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

sudo apt-get -y install hpcc

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

You can also use apt command to install hpcc.

sudo apt -y install hpcc

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

sudo aptitude install hpcc

Summary

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