Nithin.P
Nithin.P

Reputation: 131

How to install python weka wrapper on ubuntu 32 bit?

The official website shows how weka-wrapper can install on ubuntu 64 bit. I want toknowhow it can be install on ubuntu 32 bit?

Upvotes: 0

Views: 380

Answers (3)

Midhun Mohan
Midhun Mohan

Reputation: 582

Before installing weka wrapper for python you are suppose to install the weka itself using sudo apt-get install weka or build from source code and add the path the enviroment variable using export wekahome="your weka path" this will make sure you have the required weka jar file in the directory

Upvotes: 0

Padraic Cunningham
Padraic Cunningham

Reputation: 180401

If there is a compatibility issue you can install a wrapper from here:

sudo apt-get install weka libsvm-java

sudo pip install weka

Upvotes: 1

John Hua
John Hua

Reputation: 1456

pip install python-weka-wrapper

I see no difference here. pip will cover the compatibility issue.

Upvotes: 0

Related Questions