eoconv command not found

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

Introduction

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

eoconv: command not found

or when using sudo you get the following error message

sudo: eoconv: command not found

Solutions to eoconv: command not found

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

In Ubuntu eoconv is provided by eoconv package.

eoconv is:

Esperanto is written in an alphabet of 28 letters. However, only 22 of these letters can be found in the standard ASCII character set. The remaining six – c', g’, h', j’, and s' with circumflex, and u' with breve – are not available in ASCII. Various encoding systems have been developed to represent Esperanto text in printed and typed text. eoconv program converts between them.

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

sudo apt-get -y install eoconv

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

You can also use apt command to install eoconv.

sudo apt -y install eoconv

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

sudo aptitude install eoconv

Summary

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