Skip to content

Instantly share code, notes, and snippets.

@tlecomte
Created December 12, 2012 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlecomte/4266424 to your computer and use it in GitHub Desktop.
Save tlecomte/4266424 to your computer and use it in GitHub Desktop.
Failing jython+Icy+execnet
import sys
sys.path += ['/Users/tlecomte/jython2.5.3stdln+execnet/Lib/site-packages/execnet-1.1-py2.5.egg']
import execnet
from icy.main import Icy
im = Icy.getMainInterface().getFocusedImage()
data = im.getDataXYAsDouble(0)
print data[0]
print "making gateway"
gw = execnet.makegateway("popen//python=python")
print "executing"
channel = gw.remote_exec("""
""")
print "finished !"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment