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.
sudo apt-get updateAfter updating apt database, We can install espeak using apt-get by running the following command:
sudo apt-get -y install espeakInstall espeak Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install espeak using apt by running the following command:
sudo apt -y install espeakInstall 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.
sudo aptitude updateAfter updating apt database, We can install espeak using aptitude by running the following command:
sudo aptitude -y install espeakHow To Uninstall espeak on Kali Linux
To uninstall only the espeak package we can use the following command:
sudo apt-get remove espeakUninstall espeak And Its Dependencies
To uninstall espeak and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove espeakRemove espeak Configurations and Data
To remove espeak configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge espeakRemove 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:
sudo apt-get -y autoremove --purge espeakDependencies
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.