Re: [IronPython] How to generate an exe using IronPython.Hosting.PythonCompiler?

2006-02-23 Thread Alexei Vinidiktov
Thanks a lot, Seo! Sanghyeon Seo wrote: 2006/2/22, Alexei Vinidiktov [EMAIL PROTECTED]: I'd like to use IronPython.Hosting.PythonCompiler for generating exe files from my scripts, but I can't figure out how to do it. In the IronPython distribution, Src/Scripts/Tests/compiler.py should be

[IronPython] New User

2006-02-23 Thread JoeSox
Hello, I'm new to using IronPython and am working, in my spare time, to integrate MIT's ConceptNet to C# and am debating to use IronPython or not. Right now I am having trouble understanding how, and if, IronPython is compatible with Tkinker because I am just trying to run ConceptNet's

Re: [IronPython] clr.AddRefernce* woes

2006-02-23 Thread Dino Viehland
There were a couple of bugs w/ assembly loading in beta 3. As a work around you should be able to do: import System clr.AddReference(System.Reflection.Assembly.Load('System.Xml')) clr.AddReference(System.Reflection.Assembly.LoadFrom('System.Xml'))