I am trying to import python paramiko module from java program. So for that i used jython. When i try to import paramiko from jython it gives below error,
Exception in thread "main" Traceback (most recent call last): File "", line 1, in ImportError: No module named paramiko
Please advice me to import paramiko from jython.
public class jythonTest { public static void main(String[] args) throws PyException {
    PythonInterpreter interp = new PythonInterpreter();
    interp.exec("import sys");
    interp.exec("import paramiko");
    interp.exec("import time");
   }
}
 
    