bp2ncd.mpich command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bp2ncd.mpich: command not found
or when using sudo you get the following error message
sudo: bp2ncd.mpich: command not found
Solutions to bp2ncd.mpich: command not found
How To Fix bp2ncd.mpich: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bp2ncd.mpich is provided by libadios-bin package.
libadios-bin is:
The Adaptable IO System (ADIOS) provides a simple, flexible way for scientists to describe the data in their code that may need to be written, read, or processed outside of the running simulation. By providing an external to the code XML file describing the various elements, their types, and how you wish to process them this run, the routines in the host code (either Fortran or C) can transparently change how they process the data.
This package provides tools for use with ADIOS.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libadios-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libadios-bin.
sudo apt -y install libadios-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libadios-bin
Summary
In this tutorial we learn how to fix bp2ncd.mpich command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.