Yui
Yui

Reputation: 103

is it possible to run compiled iron python scripts on PCs without iron python installed?

I'm using the pyc tool to compile IronPython scripts to executables, but can they be run without IronPython installed? If so what do I have to include?

Upvotes: 0

Views: 307

Answers (2)

Torxed
Torxed

Reputation: 23480

Yes, you can run it on other PC's without installing IronPy or Visual Studi (ergo, off the bat). Sometimes you'd might need the Windows runtime libraries that you compiled the application with, but other then that.. yes you can execute it on any other Windows PC equal to the one your compiled it on. (example, compiling on win7 will most likely run on win7 off the bat but not on a XP without the runtime libraries used on the compiling machine)

Upvotes: 2

lindosekai
lindosekai

Reputation: 184

I think with py2exe and the .net framework

Upvotes: 0

Related Questions