itpp-config command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
itpp-config: command not found
or when using sudo you get the following error message
sudo: itpp-config: command not found
Solutions to itpp-config: command not found
How To Fix itpp-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu itpp-config is provided by libitpp-dev package.
libitpp-dev is:
IT++ is a C++ library of mathematical, signal processing and communication classes and functions. Its main use is in simulation of communication systems and for performing research in the area of communications. The kernel of the library consists of generic vector and matrix classes, and a set of accompanying routines. Such a kernel makes IT++ similar to MATLAB or GNU Octave .
This package has the development libraries and headers for IT++.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libitpp-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libitpp-dev.
sudo apt -y install libitpp-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libitpp-dev
Summary
In this tutorial we learn how to fix itpp-config command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.