regina-config command not found

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

Introduction

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

regina-config: command not found

or when using sudo you get the following error message

sudo: regina-config: command not found

Solutions to regina-config: command not found

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

In Ubuntu regina-config is provided by libregina3-dev package.

libregina3-dev is:

Regina is an ANSI compliant REXX interpreter for multiple platforms.

REXX is a procedural language that allows programs and algorithms to be written in a clear and structured way, it is also designed to be used as a macro language by arbitrary application programs.

Contains static library, header file rexxsaa.h and regina-config script.

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

sudo apt-get -y install libregina3-dev

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

You can also use apt command to install libregina3-dev.

sudo apt -y install libregina3-dev

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

sudo aptitude install libregina3-dev

Summary

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