harpconvert command not found

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

Introduction

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

harpconvert: command not found

or when using sudo you get the following error message

sudo: harpconvert: command not found

Solutions to harpconvert: command not found

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

In Ubuntu harpconvert is provided by harp package.

harp is:

HARP is a toolset for ingesting, processing and inter-comparing satellite or model data against correlative data. The toolset is composed of a set of command line tools, a C library of analysis functions, and import/export interfaces for Python. The main goal of HARP is to assist in the inter-comparison of data sets. By appropriatelty chaining calls to the HARP command line tools one can preprocess satellite, model, and/or correlative data such that two datasets that need to be compared end up having the same temporal/spatial grid, same data format/structure, and same physical units.

This package provides the HARP binary utilities.

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

sudo apt-get -y install harp

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

You can also use apt command to install harp.

sudo apt -y install harp

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

sudo aptitude install harp

Summary

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