PrePARE command not found

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

Introduction

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

PrePARE: command not found

or when using sudo you get the following error message

sudo: PrePARE: command not found

Solutions to PrePARE: command not found

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

In Ubuntu PrePARE is provided by libcmor-dev package.

libcmor-dev is:

The “Climate Model Output Rewriter” (CMOR, pronounced “Seymour”) comprises a set of C-based functions, with bindings to both Python and FORTRAN 90, that can be used to produce CF-compliant netCDF files. that fulfill the requirements of many of the climate community’s standard model experiments.

This package contains files needed to build and link against the CMOR library.

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

sudo apt-get -y install libcmor-dev

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

You can also use apt command to install libcmor-dev.

sudo apt -y install libcmor-dev

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

sudo aptitude install libcmor-dev

Summary

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