stopwatch command not found

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

Introduction

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

stopwatch: command not found

or when using sudo you get the following error message

sudo: stopwatch: command not found

Solutions to stopwatch: command not found

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

In Ubuntu stopwatch is provided by stopwatch package.

stopwatch is:

This is a stopwatch and timer program that uses the Tk toolkit. It has millisecond accuracy. Stopwatch can act as a graphical chronometer (it will provides a GUI interface to user).

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

sudo apt-get -y install stopwatch

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

You can also use apt command to install stopwatch.

sudo apt -y install stopwatch

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

sudo aptitude install stopwatch

Summary

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