How To Install emacspeak-espeak-server on Ubuntu 18.04

In this tutorial we learn how to install emacspeak-espeak-server on Ubuntu 18.04. emacspeak-espeak-server is espeak synthesis server for emacspeak

Introduction

In this tutorial we learn how to install emacspeak-espeak-server on Ubuntu 18.04.

What is emacspeak-espeak-server

emacspeak-espeak-server is:

Emacspeak is a speech output system that will allow someone who cannot see to work directly on a UNIX system.

Emacspeak is built on top of Emacs. Once Emacs is started with Emacspeak loaded, users get spoken feedback for all actions. As Emacs can do everything, they get speech feedback for everything they do.

This package includes the speech server for the espeak (software) speech synthesizer.

There are three methods to install emacspeak-espeak-server on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install emacspeak-espeak-server Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install emacspeak-espeak-server using apt-get by running the following command:

sudo apt-get -y install emacspeak-espeak-server

Install emacspeak-espeak-server Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install emacspeak-espeak-server using apt by running the following command:

sudo apt -y install emacspeak-espeak-server

Install emacspeak-espeak-server Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install emacspeak-espeak-server using aptitude by running the following command:

sudo aptitude -y install emacspeak-espeak-server

How To Uninstall emacspeak-espeak-server on Ubuntu 18.04

To uninstall only the emacspeak-espeak-server package we can use the following command:

sudo apt-get remove emacspeak-espeak-server

Uninstall emacspeak-espeak-server And Its Dependencies

To uninstall emacspeak-espeak-server and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove emacspeak-espeak-server

Remove emacspeak-espeak-server Configurations and Data

To remove emacspeak-espeak-server configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge emacspeak-espeak-server

Remove emacspeak-espeak-server configuration, data, and all of its dependencies

We can use the following command to remove emacspeak-espeak-server configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge emacspeak-espeak-server

References

Summary

In this tutorial we learn how to install emacspeak-espeak-server package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.