0

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?

victorxu2
  • 494
  • 1
  • 5
  • 10

1 Answers1

1

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

fracpete
  • 2,448
  • 2
  • 12
  • 17