How To Install sphinxbase on Fedora 34
Introduction
In this tutorial we learn how to install sphinxbase
on Fedora 34.
What is sphinxbase
Sphinxbase is a common library for CMU Sphinx voice recognition products. This package does not provide voice recognition by itself.
We can use yum
or dnf
to install sphinxbase
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install sphinxbase.
Install sphinxbase 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 sphinxbase
using dnf
by running the following command:
sudo dnf -y install sphinxbase
Install sphinxbase 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 sphinxbase
using yum
by running the following command:
sudo yum -y install sphinxbase
How To Uninstall sphinxbase on Fedora 34
To uninstall only the sphinxbase
package we can use the following command:
sudo dnf remove sphinxbase
sphinxbase Package Contents on Fedora 34
/usr/bin/sphinx_cepview
/usr/bin/sphinx_cont_seg
/usr/bin/sphinx_fe
/usr/bin/sphinx_jsgf2fsg
/usr/bin/sphinx_lm_convert
/usr/bin/sphinx_lm_eval
/usr/bin/sphinx_pitch
/usr/lib/.build-id
/usr/lib/.build-id/02
/usr/lib/.build-id/02/dad245ba2c07b378cb755ca898c90700cbd0db
/usr/lib/.build-id/04
/usr/lib/.build-id/04/6544ce38dec152ceff609c23f925cda0eb8ae2
/usr/lib/.build-id/24
/usr/lib/.build-id/24/de4436acbb94b5cc715b272bc560a04966fa06
/usr/lib/.build-id/83
/usr/lib/.build-id/83/2a91481263f5a15a9640e0994457e3744ed776
/usr/lib/.build-id/96
/usr/lib/.build-id/96/cdf2654d7cb599b6385b99bf49394e1bc3e188
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/7763c69fa6bfd2969773727eeb6b557907ff7d
/usr/lib/.build-id/e1
/usr/lib/.build-id/e1/98646226ee59fa0d8fb7da14cedaa63976a70d
/usr/share/man/man1/sphinx_cepview.1.gz
/usr/share/man/man1/sphinx_cont_seg.1.gz
/usr/share/man/man1/sphinx_fe.1.gz
/usr/share/man/man1/sphinx_lm_convert.1.gz
/usr/share/man/man1/sphinx_lm_eval.1.gz
/usr/share/man/man1/sphinx_lm_sort.1.gz
/usr/share/man/man1/sphinx_pitch.1.gz
References
Summary
In this tutorial we learn how to install sphinxbase
on Fedora 34 using yum and dnf.