there is one way to create exes with ironpython. I wrote about it in Italian. All you need is a file called IronPython-1.0.1-Samples-Pyc.zip (you can find it on the IronPython website). Just read the readme to learn how to use it.
On 28 Apr, 10:36, Giovanni Bajo <[EMAIL PROTECTED]> wrote: > On Mon, 2008-04-28 at 10:33 +0200, Marek Guzowski wrote: > > Hello > > > I have some problems with working using PyInstaller and IronPython. > > When I run Configure.py, i get this message: > > > I: computing EXE_dependencies > > Traceback (most recent call last): > > File Snippets, line unknown, in Initialize > > File Snippets, line unknown, in Dependencies > > File Snippets, line unknown, in getImports > > File Snippets, line unknown, in getImports3 > > WindowsError: The system can not find command 'ldd' > > > I was using PyInstaller 1.3 and IronPython 1.1.1 > > > I tried to use IronPython 2.0beta, and I got the same message. I also > > tried to run Build.py on my script and i got the message: > > > The current version of Python is not the same with which PyInstaller > > was configured. > > Please re-run Configure.py with this version. > > > Is there a way to fix that and use PyInstaller with IronPython? > > Hello, > > IronPython is not supported. I'm not even sure whether it can be made to > work with some fixes or it would require a radically different approach. > Surely, it requires *some* porting work. > > If you're up to the task, I can provide you with some guidance; in this > case, looking at the traceback, the problem is that the module > bindepend.py should be taught about how to compute binary dependencies > between .NET binary modules (are those .DLLs? Do they use the standard > PE export section?). It currently tries to use the Linux codepath > (invoking "ldd") probably because it fails a platform check. > -- > Giovanni Bajo > Develer S.r.l.http://www.develer.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
