sptk command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sptk: command not found
or when using sudo you get the following error message
sudo: sptk: command not found
Solutions to sptk: command not found
How To Fix sptk: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sptk is provided by sptk package.
sptk is:
The Speech Signal Processing Toolkit (SPTK) is a suite of speech signal processing tools for UNIX environments developed by the SPTK working group and some graduate students in Nagoya Institute of Technology.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sptk
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sptk.
sudo apt -y install sptk
Or if you have aptitude installed you can use the following command.
sudo aptitude install sptk
Summary
In this tutorial we learn how to fix sptk command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.