scrobbler-helper command not found

In this troubleshooting guide we learn how to fix scrobbler-helper command not found error message

Introduction

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

scrobbler-helper: command not found

or when using sudo you get the following error message

sudo: scrobbler-helper: command not found

Solutions to scrobbler-helper: command not found

How To Fix scrobbler-helper: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu scrobbler-helper is provided by libaudio-scrobbler-perl package.

libaudio-scrobbler-perl is:

The Audio::Scrobbler module provides a Perl interface to the track submission API of Last.fm’s AudioScrobbler - http://www.last.fm. So far, only track submissions are handled; the future plans include access to the various statistics.

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

sudo apt-get -y install libaudio-scrobbler-perl

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

You can also use apt command to install libaudio-scrobbler-perl.

sudo apt -y install libaudio-scrobbler-perl

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

sudo aptitude install libaudio-scrobbler-perl

Summary

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