vote up 1 vote down star
1

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?

flag

50% accept rate

3 Answers

vote up 1 vote down

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.

link|flag
Thanks but when I try to run the .exe after PYC compiles it, I get a "string is not callable" error. – unknown (google) Oct 16 at 13:40
Does your python code run if you call it with ipy? That does seem like a strange error. I'll try out some code at work today and see if I can reproduce that problem. – Toji Oct 16 at 13:52
Yup. My python code works just perfectly if I do "ipy file.py" in command-line, but when its an executable and I call "file.exe" I get the "string is not callable" error. – unknown (google) Oct 16 at 13:58
vote up 0 vote down

Can you provide a minimal repro?

link|flag
vote up 0 vote down

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)

  1. I extracted the pyc folder from the zip file and added it to my IronPython folder in C:\Program Files

  2. Now I tried running this command on the windows console, as instructed by the readme in the pyc download: ipy.exe pyc.py other_hw.py /main:console_hw.py It gave me this error:

=================================

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.