kkc command not found

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

Introduction

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

kkc: command not found

or when using sudo you get the following error message

sudo: kkc: command not found

Solutions to kkc: command not found

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

In Ubuntu kkc is provided by libkkc-utils package.

libkkc-utils is:

libkkc provides a converter from Japanese Kana-string to Kana-Kanji-mixed-string. It was named after kkc.el in GNU Emacs, a simple Kana Kanji converter, while libkkc tries to convert sentences in a bit more complex way using N-gram language models.

This package provides the testing utility for libkkc.

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

sudo apt-get -y install libkkc-utils

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

You can also use apt command to install libkkc-utils.

sudo apt -y install libkkc-utils

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

sudo aptitude install libkkc-utils

Summary

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