victorxu2
victorxu2

Reputation: 514

weka python wrapper loader for windows 10

I've installed weka python wrapper on Windows 10. And I tried running the sample code:

enter image description here

but i got this kind of error:

enter image description here

any solution to fix this issue?

Upvotes: 0

Views: 175

Answers (1)

fracpete
fracpete

Reputation: 2608

You need to install python-weka-wrapper3 if you want to use it with Python 3. The python-weka-wrapper package is for Python 2.7:

You can install it with pip like this:

pip install python-weka-wrapper3

Upvotes: 1

Related Questions