python - Importing numpy using IronPython in C# -


i trying use numpy module functions in python code run inside c# application in vs13.

i'm doing import module:

scriptengine pyengine = ironpython.hosting.python.createengine(); scriptscope pyscope = pyengine.createscope();  pyengine.execute("import numpy", pyscope); 

however says "no module named numpy". looking solution , found this: how install numpy , scipy ironpython27? old method doens't work using nilsters answer managed install numpy , im able use when run ipy cmd. dont know how use in c# app in vs. i've been looking through files , found

\ironpython 2.7\dlls\numpydotnet.dll

and also:

\ironpython 2.7\lib\site-packages\numpy\

how make possible python code import numpy?


Comments