anthy-agent command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
anthy-agent: command not found
or when using sudo you get the following error message
sudo: anthy-agent: command not found
Solutions to anthy-agent: command not found
How To Fix anthy-agent: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu anthy-agent is provided by anthy package.
anthy is:
Anthy is kana-kanji conversion engine for Japanese. It converts hiragana text to mixed kana and kanji. It is implemented as a library and stores private information in ~/.anthy/.
To fix this problem, we can install more using the command below.
sudo apt-get -y install anthy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install anthy.
sudo apt -y install anthy
Or if you have aptitude installed you can use the following command.
sudo aptitude install anthy
Summary
In this tutorial we learn how to fix anthy-agent command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.