cleo command not found

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

Introduction

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

cleo: command not found

or when using sudo you get the following error message

sudo: cleo: command not found

Solutions to cleo: command not found

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

In Ubuntu cleo is provided by cleo package.

cleo is:

cleo is a utility for playing back pre-recorded shell commands in a live demonstration. cleo displays the commands as if you had actually typed them and then executes them interactively.

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

sudo apt-get -y install cleo

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

You can also use apt command to install cleo.

sudo apt -y install cleo

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

sudo aptitude install cleo

Summary

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