ots command not found

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

Introduction

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

ots: command not found

or when using sudo you get the following error message

sudo: ots: command not found

Solutions to ots: command not found

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

In Ubuntu ots is provided by ots package.

ots is:

OTS reads a text and decides which sentences are important and which are not. Then it creates a short summary or will highlight the main idea in the text (the output can be HTML). OTS is m17n’d and works with UTF-8 encoding.

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

sudo apt-get -y install ots

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

You can also use apt command to install ots.

sudo apt -y install ots

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

sudo aptitude install ots

Summary

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