meshio command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
meshio: command not found
or when using sudo you get the following error message
sudo: meshio: command not found
Solutions to meshio: command not found
How To Fix meshio: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu meshio is provided by meshio-tools package.
meshio-tools is:
Meshio can read from and write to various data formats representing unstructured meshes, such as DOLFIN, Gmsh, H5M or VTK.
This package provides the command-line tools, and a plugin for paraview.
This package also provides Flavien Loiseau’s msh2xdmf tool to convert from MSH to XDMF mesh formats.
To fix this problem, we can install more using the command below.
sudo apt-get -y install meshio-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install meshio-tools.
sudo apt -y install meshio-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install meshio-tools
Summary
In this tutorial we learn how to fix meshio command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.