Reputation: 103
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
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