album command not found

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

Introduction

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

album: command not found

or when using sudo you get the following error message

sudo: album: command not found

Solutions to album: command not found

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

In Ubuntu album is provided by album package.

album is:

Album is a perl script that can create HTML photo albums for your directories of images. It supports themes that determine the visual appearance of the albums. Album creates thumbnails if necessary, and ‘medium sized’ versions of images for web viewing to avoid large downloads of original images. You can also customize your photo albums in many other ways.

This program doesn’t require a web server to work. Once the HTML is generated, you can put it in your “www” directory.

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

sudo apt-get -y install album

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

You can also use apt command to install album.

sudo apt -y install album

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

sudo aptitude install album

Summary

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