为什么我在python中导入weka时出错

时间:2018-12-27 13:13:28

标签: python weka

我试图在import wekapython

import sys
import weka.core.jvm as jvm

我得到一个错误:

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-42-7f797cd58f75> in <module>()
      1 import sys
----> 2 import weka.core.jvm as jvm
ImportError: No module named 'weka'

2 个答案:

答案 0 :(得分:1)

如果您的解释器未安装软件包,则无法导入。尝试使用pip安装:

pip install python-weka-wrapper

编辑:首先查看python-weka-wrapperhttps://fracpete.github.io/python-weka-wrapper/install.html

的文档

答案 1 :(得分:1)

您可以通过下载wheel文件(from here)来回避javabridge的编译。请参阅Windows here的完整说明。