ssocr command not found

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

Introduction

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

ssocr: command not found

or when using sudo you get the following error message

sudo: ssocr: command not found

Solutions to ssocr: command not found

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

In Ubuntu ssocr is provided by ssocr package.

ssocr is:

Seven Segment Optical Character Recognition or ssocr for short is a program to recognize digits of a seven segment display. An image of one row of digits is used for input and the recognized number is written to the standard output.

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

sudo apt-get -y install ssocr

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

You can also use apt command to install ssocr.

sudo apt -y install ssocr

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

sudo aptitude install ssocr

Summary

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