ImportError:Jython中没有名为demiso的模块

时间:2017-07-01 15:17:57

标签: java python jython

我是Jython的新手,我正在尝试使用Java中的Jython运行python类。但是我遇到了一些问题。

  

我定义的Java类:

public class DemistoCalls {

    PythonInterpreter interpreter = null;


    public DemistoCalls()
    {
        PythonInterpreter.initialize(System.getProperties(),
                System.getProperties(), new String[0]);

        this.interpreter = new PythonInterpreter();
    }

    void execfile( final String fileName )
    {
        this.interpreter.execfile(fileName);
    }

    PyInstance createClass( final String className, final String opts )
    {
        return (PyInstance) this.interpreter.eval(className + "(" + opts + ")");
    }

    public static void main(String[] args) {
        DemistoCalls demistoCalls = new DemistoCalls();

        demistoCalls.execfile("C:\\Users\\AlokNath\\Desktop\\Demisto_Project\\demisto-py-master\\demisto\\SimpleConnect.py");

    }

}
  

我正在尝试运行的SampleConnect.py文件:

import sys
sys.path.append("C:\Users\AlokNath\Desktop\Demisto_Project\demisto-py-
master\demisto")
import demisto

运行java文件时,我收到此错误:

File "C:\Users\AlokNath\Desktop\Demisto_Project\demisto-py-master\demisto\SimpleConnect.py", line 3, in <module> import demisto ImportError: No module named demisto

虽然我在系统路径中定义了“demisto”模块并检查了python中的系统路径是否包含Jython 2.7.lb2 Library的相应路径。我不知道我哪里错了。任何帮助表示赞赏。

此致 阿洛克

1 个答案:

答案 0 :(得分:0)

我找到了导入错误问题的解决方案。我们需要将缺少的模块复制到“modeler-installation / lib / jython / Lib”下的“site-packages”文件夹中。这将解决依赖性问题。