EitanG
EitanG

Reputation: 221

Can IronPython run on machine that it does not installed on?

I'm new to Python (IronPython), I come from VS environment. I want to integrate Python with WPF and I understand that IronPython is good a solution for that.

I've install IronPython on my computer, but i wonder if the project (Python+WPF) can run on a machine that IronPython is not installed on ?

My computer has: Python, IronPython, .Net Freamwork Target Machine has: Python, .Net Freamwork

Upvotes: 1

Views: 285

Answers (1)

Jeff Hardy
Jeff Hardy

Reputation: 7662

Absolutely, you just have to include the appropriate assemblies (IronPython.dll, IronPython.Modules.dll, Microsoft.Scripting.dll, and Microsoft.Dynamic.dll) and any standard library modules you may be using with your application.

Upvotes: 1

Related Questions