From ehsan.msc87 at gmail.com Mon Jul 13 15:41:25 2015 From: ehsan.msc87 at gmail.com (Ehsan Majidi) Date: Mon, 13 Jul 2015 15:41:25 +0200 Subject: [execnet-dev] WindowsError: [Error 2] The system cannot find the file specified Message-ID: Hi, I am trying to use execnet in order to integrate a java library with my python code, and I came across execnet to bridge between them. I am, however, having a hard time implementing the following code: import execnet gw = execnet.makegateway("popen//python=jython") channel = gw.remote_exec(""" from java.util import Vector v = Vector() v.add('aaa') v.add('bbb') for val in v: channel.send(val) """) for item in channel: print (item) and right now, I get the following error: WindowsError: [Error 2] The system cannot find the file specified. It is run in Eclipse IDE with 2.7 python interpreter. It is my first attempt to use jython so I have no idea if my configuration is wrong or there is problem in installation or a bug in the package. I appreciate any help to fix the problem. Thank you for your time and look forward to hearing from you. Regards, Sheon -------------- next part -------------- An HTML attachment was scrubbed... URL: