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

Popular posts from this blog

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -

python - How to create a legend for 3D bar in matplotlib? -