ncbo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ncbo: command not found
or when using sudo you get the following error message
sudo: ncbo: command not found
Solutions to ncbo: command not found
How To Fix ncbo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ncbo 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 ncbo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.