Iron Python / Iron Ruby EXE - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:20:19Z http://stackoverflow.com/feeds/question/1014007 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1014007/iron-python-iron-ruby-exe 3 Iron Python / Iron Ruby EXE JoshRivers 2009-06-18T17:22:01Z 2009-06-23T11:34:53Z <p>I've always had this dream of creating a 'real exe' from a scripting language. With the available of DLR-based implementations of Python and Ruby, is this getting any closer to reality?</p> <p>I'd like to create a 'real application':</p> <ul> <li>A Windows Forms App</li> <li>A Console App</li> <li>A Windows Service</li> </ul> <p>And have the unit of distribution be a compiled exe.</p> <p>Is this possible? Or has MS just created script file interpreters based on .NET?</p> <p>If you are doing this, how are you structuring your applications / projects? Are you using a hybrid of C# and DLR code?</p> http://stackoverflow.com/questions/1014007/iron-python-iron-ruby-exe/1014064#1014064 0 Answer by Steve Weet for Iron Python / Iron Ruby EXE Steve Weet 2009-06-18T17:30:16Z 2009-06-18T17:30:16Z <p>Not sure how complex your application is going to be but <a href="http://shoooes.net/about/" rel="nofollow">Ruby shoes</a> seems to be able to distribute simple applications as exes.</p> http://stackoverflow.com/questions/1014007/iron-python-iron-ruby-exe/1014177#1014177 1 Answer by DoxaLogos for Iron Python / Iron Ruby EXE DoxaLogos 2009-06-18T17:47:09Z 2009-06-18T17:47:09Z <p>You can create exe's from regular python using <a href="http://www.py2exe.org/" rel="nofollow">Py2Exe</a>. But there shouldn't be anything preventing you from creating exes with IronPython using Visual Studio or <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a></p> http://stackoverflow.com/questions/1014007/iron-python-iron-ruby-exe/1014515#1014515 3 Answer by ShuggyCoUk for Iron Python / Iron Ruby EXE ShuggyCoUk 2009-06-18T18:51:33Z 2009-06-23T11:34:53Z <p>An IronPython or IronRuby project can be compiled to a dll or executable just fine and will be 'real' executables in every way with the proviso that the person running them must have the relevant .Net framework and dependencies installed (dependencies may be present in the same directory by default instead but the framework must be installed). The integration with Visual Studio is still not there but projects like <a href="http://www.codeplex.com/IronPythonStudio" rel="nofollow">IronPythonStudio</a> use the free VS Shell to good effect. The existence of the DLR as a dependency for c# dynamic in VS 2010 should mean that integration with VS from the Iron* groups becomes an easier goal and a higher priority.</p> <p>The result is in no way interpreted (the CIL is jitted into machine code at runtime or via ngen if desired) and certain aspects of the DLR mean some actions are deferred in a similar fashion to latebinding but more powerfully and crucially with some sophisticated caching mechanisms to allow this to be relatively fast compared with naive interpreters.</p> <p>Many traditionally interpreted scripting languages are creating their own VM based compilation strategies or leverage existing ones (like the JVM, the .Net CLR or open ones like the <a href="http://llvm.org/" rel="nofollow">LLVM</a>) since this leads to significant performance increases in many common cases. </p> <p>In the case of the Iron* languages the benefit of the MS CLR as a basis is that the resulting executables 'Just Work' on the vast majority of installations of the most common OS family. Contrast to Java where a jar file is not 'runnable' by directly clicking / or 'executing' via the shell in many operating systems. The flipside from this is that this reduces interoperability compared to say a JVM or LLVM based solution where the platform support is broader but, inevitably, more diverse in OS integration.</p>