ncview command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ncview: command not found
or when using sudo you get the following error message
sudo: ncview: command not found
Solutions to ncview: command not found
How To Fix ncview: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ncview is provided by ncview package.
ncview is:
You would use ncview to get a quick and easy, push-button look at your NetCDF files. You can view simple movies of the data, view along various dimensions, take a look at the actual data values, change color maps, invert the data and other simple visual operations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ncview
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ncview.
sudo apt -y install ncview
Or if you have aptitude installed you can use the following command.
sudo aptitude install ncview
Summary
In this tutorial we learn how to fix ncview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.