poeditor command not found

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

Introduction

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

poeditor: command not found

or when using sudo you get the following error message

sudo: poeditor: command not found

Solutions to poeditor: command not found

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

In Ubuntu poeditor is provided by poedit package.

poedit is:

Poedit is an editor for gettext catalogs (.po files). It aims to provide a convenient approach to editing catalogs. It features UTF-8 support, fuzzy and untranslated records highlighting, whitespace highlighting, references browser, header editing and can be used to create new catalogs or update existing catalogs from source code with a single click. It is built with wxWidgets toolkit.

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

sudo apt-get -y install poedit

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

You can also use apt command to install poedit.

sudo apt -y install poedit

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

sudo aptitude install poedit

Summary

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