medconforme command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
medconforme: command not found
or when using sudo you get the following error message
sudo: medconforme: command not found
Solutions to medconforme: command not found
How To Fix medconforme: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu medconforme is provided by libmed-tools package.
libmed-tools is:
MED-fichier (Modélisation et Echanges de Données, in English Modelisation and Data Exchange) is a library to store and exchange meshed data or computation results. It uses the HDF5 file format to store the data.
This package contains runtime tools for med-fichier:
- mdump: a tool to dump MED files
- xmdump: graphical version of mdump.
- medconforme: a tool to validate a MED file
- medimport: a tool to convert a MED v2.1 or v2.2 file into a MED v2.3 file
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmed-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmed-tools.
sudo apt -y install libmed-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmed-tools
Summary
In this tutorial we learn how to fix medconforme command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.