djinn command not found

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

Introduction

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

djinn: command not found

or when using sudo you get the following error message

sudo: djinn: command not found

Solutions to djinn: command not found

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

In Ubuntu djinn is provided by djinn package.

djinn is:

Djinn uses a theorem prover for intuitionistic propositional logic to generate a Haskell expression when given a type.

Given a type the program will deduce an expression of this type, if one exists. If the Djinn says the type is not realizable it is because there is no (total) expression of the given type.

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

sudo apt-get -y install djinn

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

You can also use apt command to install djinn.

sudo apt -y install djinn

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

sudo aptitude install djinn

Summary

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