How To Install espeak on Kali Linux
Introduction
In this tutorial we learn how to install espeak
on Kali Linux.
What is espeak
espeak is:
eSpeak is a software speech synthesizer for English, and some other languages.
eSpeak produces good quality English speech. It uses a different synthesis method from other open source text to speech (TTS) engines, and sounds quite different. It’s perhaps not as natural or “smooth”, but some find the articulation clearer and easier to listen to for long periods.
It can run as a command line program to speak text from a file or from stdin.
- Includes different Voices, whose characteristics can be altered.
- Can produce speech output as a WAV file.
- Can translate text to phoneme codes, so it could be adapted as a front end for another speech synthesis engine.
- Potential for other languages. More than 40 languages are included.
- Compact size. The program and its data total about 350 kbytes.
- Written in C++.
There are three methods to install espeak
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install espeak Using apt-get
Update apt database with apt-get
using the following command.
After updating apt database, We can install espeak
using apt-get
by running the following command:
Install espeak Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install espeak
using apt
by running the following command:
Install espeak Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
After updating apt database, We can install espeak
using aptitude
by running the following command:
How To Uninstall espeak on Kali Linux
To uninstall only the espeak
package we can use the following command:
Uninstall espeak And Its Dependencies
To uninstall espeak
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove espeak Configurations and Data
To remove espeak
configuration and data from Kali Linux we can use the following command:
Remove espeak configuration, data, and all of its dependencies
We can use the following command to remove espeak
configurations, data and all of its dependencies, we can use the following command:
Dependencies
espeak have the following dependencies:
References
Summary
In this tutorial we learn how to install espeak
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.