xmpi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xmpi: command not found
or when using sudo you get the following error message
sudo: xmpi: command not found
Solutions to xmpi: command not found
How To Fix xmpi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xmpi is provided by xmpi package.
xmpi is:
MPI is a standard for writing parallel processing programs using a well defined Message Passing Interface.
XMPI can acquire and display extensive detail on an application’s MPI communication, including the following: o process synchronization status: running, system or blocked o message queue contents o source, destination, root ranks o MPI function name o communicator o data type o message count o tag The above information is acquired from on-demand snapshots of application status using debugging hooks in the MPI implementation or from a trace log of communication activity.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xmpi
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xmpi.
sudo apt -y install xmpi
Or if you have aptitude installed you can use the following command.
sudo aptitude install xmpi
Summary
In this tutorial we learn how to fix xmpi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.