> Hi Thats right I am in fact using the source downloaded from pypi or github. But now when I do the steps you suggested I get this error:
>
> import weka.core.jvm as jvm
> Traceback (most recent call last):
>
> File "<ipython-input-3-3ffc2a186fc1>", line 1, in <module>
> import weka.core.jvm as jvm
>
> File "weka\core\jvm.py", line 17, in <module>
> import javabridge
>
> ImportError: No module named javabridge
Javabridge is not a pure Python package, you need to install it via pip:
pip install javabridge
Cheers, Peter