fuzzylite command not found

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

Introduction

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

fuzzylite: command not found

or when using sudo you get the following error message

sudo: fuzzylite: command not found

Solutions to fuzzylite: command not found

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

In Ubuntu fuzzylite is provided by fuzzylite package.

fuzzylite is:

fuzzylite is a fuzzy logic control library which allows one to easily create fuzzy logic controllers in a few steps utilizing object-oriented programming. It supports five controller types (Mamdani, Takagi-Sugeno, Larsen, Tsukamoto, Inverse Tsukamoto), 20 linguistic terms, five integral and two weighted defuzzifiers, six hedge types, three import types (FuzzyLite Language, Fuzzy Inference System and Fuzzy Control Language) and six export types (C++, Java, FuzzyLite Language, FuzzyLite Dataset, Fuzzy Inference System, Fuzzy Control Language). It comes bundled with more than thirty examples for Mamdani, Takagi-Sugeno and Tsukamoto controllers from fuzzylite, octave and matlab, each in all supported export formats.

This package contains the runtime binary

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

sudo apt-get -y install fuzzylite

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

You can also use apt command to install fuzzylite.

sudo apt -y install fuzzylite

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

sudo aptitude install fuzzylite

Summary

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