stepic command not found

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

Introduction

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

stepic: command not found

or when using sudo you get the following error message

sudo: stepic: command not found

Solutions to stepic: command not found

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

In Ubuntu stepic is provided by stepic package.

stepic is:

A Python 3 module and command line tool for hiding arbitrary data within images by slightly modifying the colors. These modifications are generally imperceptible to humans, but are machine detectable. Works with RGB, RGBA, or CMYK images.

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

sudo apt-get -y install stepic

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

You can also use apt command to install stepic.

sudo apt -y install stepic

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

sudo aptitude install stepic

Summary

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