How To Install nuspell on Fedora 34
Introduction
In this tutorial we learn how to install nuspell
on Fedora 34.
What is nuspell
Nuspell is a fast and safe spelling checker software program. It is designed \ for languages with rich morphology and complex word compounding. Nuspell is \ written in modern C++ and it supports Hunspell dictionaries. nuspell 4.2.0 3.fc34 x86_64 180 k nuspell-4.2.0-3.fc34.src.rpm fedora Fast and safe spellchecking C++ library and command-line tool https LGPLv3+ Nuspell is a fast and safe spelling checker software program. It is designed \ for languages with rich morphology and complex word compounding. Nuspell is \ written in modern C++ and it supports Hunspell dictionaries.
We can use yum
or dnf
to install nuspell
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install nuspell.
Install nuspell on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install nuspell
using dnf
by running the following command:
sudo dnf -y install nuspell
Install nuspell on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install nuspell
using yum
by running the following command:
sudo yum -y install nuspell
How To Uninstall nuspell on Fedora 34
To uninstall only the nuspell
package we can use the following command:
sudo dnf remove nuspell
nuspell Package Contents on Fedora 34
/usr/bin/nuspell
/usr/lib/.build-id
/usr/lib/.build-id/40
/usr/lib/.build-id/40/b96bac604ea925316f1212b52ade51d0d12847
/usr/lib/.build-id/75
/usr/lib/.build-id/75/a57f820a93feb59ea6e205e8684992e3effed6
/usr/lib/libnuspell.so.4
/usr/lib/libnuspell.so.4.2.0
/usr/share/doc/nuspell
/usr/share/doc/nuspell/AUTHORS
/usr/share/doc/nuspell/CHANGELOG.md
/usr/share/doc/nuspell/README.md
/usr/share/licenses/nuspell
/usr/share/licenses/nuspell/COPYING
/usr/share/licenses/nuspell/COPYING.LESSER
/usr/share/man/man1/nuspell.1.gz
/usr/bin/nuspell
/usr/lib/.build-id
/usr/lib/.build-id/54
/usr/lib/.build-id/54/1de9bd01deda1a53fdc0d3445227bbdad91c33
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/04e3db289a86129beea4a3fd9c32906c2fb061
/usr/lib64/libnuspell.so.4
/usr/lib64/libnuspell.so.4.2.0
/usr/share/doc/nuspell
/usr/share/doc/nuspell/AUTHORS
/usr/share/doc/nuspell/CHANGELOG.md
/usr/share/doc/nuspell/README.md
/usr/share/licenses/nuspell
/usr/share/licenses/nuspell/COPYING
/usr/share/licenses/nuspell/COPYING.LESSER
/usr/share/man/man1/nuspell.1.gz
References
- [nuspell website](https://nuspell.github.io https://nuspell.github.io)
Summary
In this tutorial we learn how to install nuspell
on Fedora 34 using yum and dnf.