spc command not found

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

Introduction

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

spc: command not found

or when using sudo you get the following error message

sudo: spc: command not found

Solutions to spc: command not found

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

In Ubuntu spc is provided by supercat package.

supercat is:

Supercat is a program that colorizes text based on matching regular expressions/strings/characters. Supercat supports html output as well as standard ASCII text. Unlike some text-colorizing programs that exist, Supercat does not require you to have to be a programmer to make colorization rules.

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

sudo apt-get -y install supercat

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

You can also use apt command to install supercat.

sudo apt -y install supercat

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

sudo aptitude install supercat

Summary

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