spigot command not found

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

Introduction

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

spigot: command not found

or when using sudo you get the following error message

sudo: spigot: command not found

Solutions to spigot: command not found

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

In Ubuntu spigot is provided by spigot package.

spigot is:

spigot is an exact real calculator: that is, you give it a mathematical expression to evaluate, and it computes it to any desired precision, by default simply printing digits to standard output until it is interrupted.

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

sudo apt-get -y install spigot

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

You can also use apt command to install spigot.

sudo apt -y install spigot

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

sudo aptitude install spigot

Summary

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