Karim Mohammad
Karim Mohammad

Reputation: 33

install numpy to ironpython (using in c# code)

I use ironPython in my C# project via a nuget package. now I want to use numpy functions in a *.py script and call that from my c# code via ironpython. I allready tried to install numpy via cmd into ironpython but it don't worked to me.

Is there a way to help me out (maybe with a little tutorial about that)?

Upvotes: 1

Views: 1285

Answers (1)

PJRobot
PJRobot

Reputation: 1416

I haven't much experience with IronPython, but I believe it does not natively support third party libraries like numpy. I believe that Python.NET may be a better solution if this is what you require. (http://pythonnet.github.io/)

Upvotes: 1

Related Questions