c# - Run Python script in Windows Phone -
how should go running python script in windows phone 7 or 8 ironpython. have tried doing following:
var ipy = python.createruntime(); dynamic test = ipy.usefile("test.py");
but error:
a first chance exception of type 'system.notimplementedexception' occurred in microsoft.scripting.dll method or operation not implemented.
the test.py contains:
print "hello world"
ironpython doesn't support windows phone. however, can use starcore.python has been compiled windows phone. check this sample on msdn.
Comments
Post a Comment