localehelper command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
localehelper: command not found
or when using sudo you get the following error message
sudo: localehelper: command not found
Solutions to localehelper: command not found
How To Fix localehelper: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu localehelper is provided by localehelper package.
localehelper is:
Localehelper is a helper tool for working with locales. It can generate locales and (un)set environmental variables for internationalization purposes.
To fix this problem, we can install more using the command below.
sudo apt-get -y install localehelper
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install localehelper.
sudo apt -y install localehelper
Or if you have aptitude installed you can use the following command.
sudo aptitude install localehelper
Summary
In this tutorial we learn how to fix localehelper command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.