fribidi command not found

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

Introduction

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

fribidi: command not found

or when using sudo you get the following error message

sudo: fribidi: command not found

Solutions to fribidi: command not found

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

In Ubuntu fribidi is provided by libfribidi-bin package.

libfribidi-bin is:

FriBiDi is a BiDi algorithm implementation for Hebrew and/or Arabic languages. This package contains a command line interface for the fribidi library.

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

sudo apt-get -y install libfribidi-bin

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

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

sudo apt -y install libfribidi-bin

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

sudo aptitude install libfribidi-bin

Summary

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