libsixel-config command not found

In this troubleshooting guide we learn how to fix libsixel-config command not found error message

Introduction

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

libsixel-config: command not found

or when using sudo you get the following error message

sudo: libsixel-config: command not found

Solutions to libsixel-config: command not found

How To Fix libsixel-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu libsixel-config is provided by libsixel-bin package.

libsixel-bin is:

SIXEL is one of image formats for printer and terminal imaging introduced by Digital Equipment Corp. (DEC). Its data scheme is represented as a terminal-friendly escape sequence. So if you want to view a SIXEL image file, all you have to do is “cat” it to your terminal.

The package contains execution binaries.

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

sudo apt-get -y install libsixel-bin

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

You can also use apt command to install libsixel-bin.

sudo apt -y install libsixel-bin

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

sudo aptitude install libsixel-bin

Summary

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