inline2test command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
inline2test: command not found
or when using sudo you get the following error message
sudo: inline2test: command not found
Solutions to inline2test: command not found
How To Fix inline2test: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu inline2test is provided by libtest-inline-perl package.
libtest-inline-perl is:
Test::Inline is a way to embed tests in the same file as your source code rather than in a separate file. The idea is, the closer your tests are to your code and docs, the more likely you’ll keep them up to date.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libtest-inline-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libtest-inline-perl.
sudo apt -y install libtest-inline-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libtest-inline-perl
Summary
In this tutorial we learn how to fix inline2test command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.