How To Install libkkc on CentOS 7
Introduction
In this tutorial we learn how to install libkkc
on CentOS 7.
What is libkkc
libkkc provides a converter from 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. libkkc provides a converter from 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.
We can use yum
or dnf
to install libkkc
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install libkkc.
Install libkkc on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install libkkc
using yum
by running the following command:
sudo yum -y install libkkc
Install libkkc on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install libkkc
using dnf
by running the following command:
sudo dnf -y install libkkc
How To Uninstall libkkc on CentOS 7
To uninstall only the libkkc
package we can use the following command:
sudo dnf remove libkkc
References
Summary
In this tutorial we learn how to install libkkc
on CentOS 7 using yum
and dnf
.