Is possible to use weka data mining software on OS Endless

Hi everyone

I’m having some issues regarding Weka software. I’ve downloaded the most recent stable version for linux, but still, not able to run it so far.

Is OS Endless compatible to it?

Thanks.

The Endless OS is only compatible with Flatpak Applications. At the moment Weka doesn’t have a Flatpak version

You can install using the toolbox command. The Toolbox is a tool that offers a familiar RPM based environment for developing and debugging software that runs fully unprivileged using Podman. I recommend reading the toolbox command documentation using the command toolbox --help or github.com/debarshiray/toolbox/tree/master/doc

Create a new toolbox container using the command:

toolbox create --release f33

To run the toolbox use the command:

toolbox enter --release f33

To install Weka 3.8.5 use the command:

wget https://prdownloads.sourceforge.net/weka/weka-3-8-5-azul-zulu-linux.zip
unzip weka-3-8-5-azul-zulu-linux.zip
sudo dnf install java-11-openjdk
cd weka-3-8-5
./weka.sh

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.