f3dinfo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
f3dinfo: command not found
or when using sudo you get the following error message
sudo: f3dinfo: command not found
Solutions to f3dinfo: command not found
How To Fix f3dinfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu f3dinfo is provided by field3d-tools package.
field3d-tools is:
Field3D is an open source library for storing voxel data.
It provides C++ classes that handle in-memory storage and a file format based on HDF5 that allows the C++ objects to be written to and read from disk.
This package contains the command-line tools.
To fix this problem, we can install more using the command below.
sudo apt-get -y install field3d-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install field3d-tools.
sudo apt -y install field3d-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install field3d-tools
Summary
In this tutorial we learn how to fix f3dinfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.