tappy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tappy: command not found
or when using sudo you get the following error message
sudo: tappy: command not found
Solutions to tappy: command not found
How To Fix tappy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tappy is provided by tappy package.
tappy is:
The tap.py package provides a set of tools for working with the Test Anything Protocol (TAP). TAP is a line based test protocol for recording test data in a standard way.
This package provides the command-line tool ’tappy’, which parses TAP syntax in files or a stream and produces unittest-style output.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tappy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tappy.
sudo apt -y install tappy
Or if you have aptitude installed you can use the following command.
sudo aptitude install tappy
Summary
In this tutorial we learn how to fix tappy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.