ncea command not found

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

Introduction

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

ncea: command not found

or when using sudo you get the following error message

sudo: ncea: command not found

Solutions to ncea: command not found

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

In Ubuntu ncea is provided by nco package.

nco is:

NCO is a suite of programs known as operators. The operators are stand-alone, command-line programs executable in a POSIX shell. Operators take one or more netCDF files as input, perform operations (e.g., averaging, hyperslabbing), and produce a netCDF output file. NCO was originally designed to manipulate and analyze climate data, though it works on any netCDF format datasets.

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

sudo apt-get -y install nco

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

You can also use apt command to install nco.

sudo apt -y install nco

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

sudo aptitude install nco

Summary

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