home › Forums › # Technical Support › fuzzylite installation on ubuntu › Reply To: fuzzylite installation on ubuntu
January 6, 2016 at 13:53
#2040
Keymaster
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.