I already attempted using py2exe (not compatible with ipy) and PYC (out of date). Can anyone point me in the direction of a good compiler?
|
1
|
|
|
|
|
|
Check out the IronPython Samples Page About half way down the page: Pyc - Python Command-Line Compiler This sample shows developers how to create .NET executables directly out of IronPython scripts. The readme.htm in the download will get you started. IronPython’s Hosting APIs can be used to compile Python scripts into DLLs, console executables, or Windows executables. The pyc.py script included in this tutorial leverages these hosting APIs and can be used to compile other Python scripts. It provides a variety of flags such as the ability to specify the target platform of the .NET assembly (e.g., x64). While the assemblies produced by the IronPython Hosting APIs are true .NET assemblies, the dynamic nature of the Python language makes it difficult to use these from other .NET languages. In short, this means that attempting to import Python types into other .NET languages such as C# is not recommended. Edit: Just noticed that you mentioned PYC was out of date. What makes it so? The IronPython crew seem to still be promoting it, so I would imagine that it's not that far gone. |
||||||
|
|
|
Can you provide a minimal repro? |
||
|
|
|
|
I had a bit of trouble trying to implement this solution. This is what I did: 1. Download pyc from http://ironpython.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=423#DownloadId=2364 This took me more searching than it should have because it seems that pyc is hard to find (and I think, a little out of date)
================================= Traceback (most recent call last): File "pyc\pyc.py", line 35, in pyc\pyc.py AttributeError: attribute 'CompilerSink' of 'namespace#' object is read-only ================================= I made the following change to line 35: Before: class PycSink(Hosting.CompilerSink): After: class PycSink(): Saving the file proved to be a problem due to permissions, so I copied the contents of pyc.py into a new IDLE window (to create a copy), deleted the existing copy of pyc.py and saved the copy as pyc.py in the same location. This takes care of permissions issues and allows changes. After making this change, I tried running the this command again: ipy.exe pyc.py other_hw.py /main:console_hw.py However, this time, I got the following error: ================================= Traceback (most recent call last): File "pyc\pyc.py", line 170, in pyc\pyc.py File "pyc\pyc.py", line 56, in Main AttributeError: attribute 'ResourceFile' of 'namespace#' object is read-only ================================= At this point, I took stock of the fact that it is now 1 AM and I have a midterm tomorrow, so I undid the changes and shut it down. Please let me know if you have a solution, or any advancements on mine. Thanks ... To be Continued |
||
|
|
