yatm command not found

In this troubleshooting guide we learn how to fix yatm command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

yatm: command not found

or when using sudo you get the following error message

sudo: yatm: command not found

Solutions to yatm: command not found

How To Fix yatm: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu yatm is provided by yatm package.

yatm is:

Yatm (Yet Another Time Machine) is a very simple command line audio player. Its main purpose is to play audio files at a different tempo while retaining the original sounds pitch. This is very useful for listening to audiobooks at a slightly higher speed than they were originally recorded with. It can also be helpful when listening to musical passages at a slower speed to be able to distinguish the different notes more easily.

Changing the pitch while keeping the tempo is also supported. Musical cents and semitones can be used to specify pitch change. This makes it easy to use for musicians. The notes you have are in G but the recording you’d like to play along with is in F? No problem, transpose the recording up two semitones. You’d like to play along with this baroque recording that uses original pitch? Just tune the music up about 80 cents and you should be fine.

To fix this problem, we can install more using the command below.

sudo apt-get -y install yatm

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install yatm.

sudo apt -y install yatm

Or if you have aptitude installed you can use the following command.

sudo aptitude install yatm

Summary

In this tutorial we learn how to fix yatm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.