ifeffit command not found

In this troubleshooting guide we learn how to fix ifeffit command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ifeffit: command not found

or when using sudo you get the following error message

sudo: ifeffit: command not found

Solutions to ifeffit: command not found

How To Fix ifeffit: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ifeffit is provided by ifeffit package.

ifeffit is:

IFEFFIT is an interactive program for XAFS analysis. It combines the high-quality analysis algorithms of AUTOBK and FEFFIT with graphical display of XAFS data and general data manipulation.

IFEFFIT comes as a command-line program, but the underlying functionality is available as a programming library. The IFEFFIT library can be used from C, Fortran, Tcl, and Perl.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ifeffit

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ifeffit.

sudo apt -y install ifeffit

Or if you have aptitude installed you can use the following command.

sudo aptitude install ifeffit

Summary

In this tutorial we learn how to fix ifeffit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.