spd-conf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
spd-conf: command not found
or when using sudo you get the following error message
sudo: spd-conf: command not found
Solutions to spd-conf: command not found
How To Fix spd-conf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu spd-conf is provided by python3-speechd package.
python3-speechd is:
Speech Dispatcher provides a device independent layer for speech synthesis. It supports various software and hardware speech synthesizers as backends and provides a generic layer for synthesizing speech and playing back PCM data via those different backends to applications.
Various high level concepts like enqueueing vs. interrupting speech and application specific user configurations are implemented in a device independent way, therefore freeing the application programmer from having to yet again reinvent the wheel.
This package contains a Python library for communication with Speech Dispatcher.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-speechd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-speechd.
sudo apt -y install python3-speechd
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-speechd
Summary
In this tutorial we learn how to fix spd-conf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.