home Forums # Technical Support fuzzylite installation on ubuntu Reply To: fuzzylite installation on ubuntu

#2040

Hi,

you have two options:
(1) Download the jar file and add it to the libraries in your project.
(2) Use Maven and include the dependency:

<dependency>
    <groupId>com.fuzzylite</groupId>
    <artifactId>jfuzzylite</artifactId>
    <version>5.0.1</version>
</dependency>

You can check an example Maven application in the jfuzzylite/examples/application folder (https://github.com/fuzzylite/jfuzzylite/tree/master/examples/application).

Cheers.