1
vote
1answer
77 views

CompiledCode.Execute takes a long time during the first iteration

I'm embedding small scripts in a c# application. To increase performance I compile them when the application starts. public CompiledCode CompileScript(string script) { return ...
1
vote
1answer
58 views

IronPython + Mono error - could not load signature

When trying to run IronPython from Mono, I get the following error: wayne@arglefraster ~/Downloads/IronPython-2.7.3 ⚘ mono ipy.exe 19:19:23 Could not load signature of ...
0
votes
0answers
41 views

IronPython as the interpreter for OpenOffice

I am writing a OpenOffice extension which is supposed to interact with a large .NET library. This extension is supposed to work both under Windows and Linux. I have already tried (and failed) to use ...
4
votes
1answer
963 views

IronPython in Unity3D

I am trying to use IronPython as an external scripting language for Unity3D. The necessary DLLs for IronPython's execution load just fine inside of Assets\Plugins. However, when I try to run the ...
0
votes
1answer
195 views

Ironpython questions

I have a few questions that I hope clarity and facts can be fed all of us about this. First, the last release of ironpython had the feature of running on the mobile platform highlighting that on ...
0
votes
0answers
433 views

IronPython DLR not working on Mono (Ubuntu)

I've got a problem when trying to run my simple console application written in C#/Mono using IronPython. When I run it on Windows 7 SP1 64bit, there're absolutely no problems with it. However, when I ...
1
vote
0answers
75 views

ironpython mono windows [closed]

I don't know where to ask this but I wanted to ask just a simple question? what is the future of Ironpython on mono and windows? I am worried that such an excellent language will die sooner than we ...
0
votes
2answers
62 views

How to detect in Iron Python what the script is being called from?

I have a ipy script that can be called either from an embedded console in a larger application or directly from the command line and I'm looking for a quick way to determine at run time which has ...
0
votes
0answers
365 views

mono ironpython macosx

I am trying my hands out on Ironpython and quite frankly I am loving every minute of it. I have an old macbook which I use for development. So I am using the latest version of mono 2.10.1 which comes ...
1
vote
1answer
219 views

Provide C#'s namespace from IronPython

I want to write Tomboy add-on using IronPython and I'm stuck and very beginning -- I need to provide C#'s namespace. I mean, here's howto in writing Tomboy add-on's ...
1
vote
1answer
178 views

IronPython - DynamicWebServiceHelpers.dll in linux?

The examples shown in the IronPython sample scripts show the ability to use DynamicWebServiceHelpers.dll as so: import clr clr.AddReference('DynamicWebServiceHelpers.dll') import ...
1
vote
1answer
267 views

How to Pinvoke IronPython on Linux

I'm trying to pinvoke a C function from IronPython 2.6 on Ubuntu 10.10. I've used an example from the IP distribution as my model. However, the C code throws "StandardError: Exception has been ...
1
vote
1answer
556 views

Developing cross-platform GUIs with IronPython: wx.NET for true native look and feel?

Obviously, with IronPython it's possible to create a first-class user experience by writing a different GUI layer for each platform (GTK# on Linux, WinForms on Windows...) I'm seriously considering ...
0
votes
1answer
477 views

Python, IronPython Mono

I have a question, Where can I find good examples or guides or can anyone give me a good example of how to get mono and ironpython working together on a MAC? I would like to do some meaningful ...
4
votes
1answer
360 views

Tail Call Optimization in Mono/Ironpython

given that CLR supports tail call optimization I was wondering if Mono, and consequently Ironpython running on Mono has support for TCO ?
3
votes
1answer
1k views

Calling IronPython object from C# with mono

I have the following IronPython code. class Hello: def __init__(self): pass def add(self, x, y): return (x+y) I need to call this from C#, and I came up with the following ...
1
vote
1answer
301 views

GAC (gacutil) not working with IronPython.dll on Mono

I tried to use gacutil (mono) for IronPython, but I got the following error. sudo gacutil -i IronPython.dll Password: Failure adding assembly IronPython.dll to the cache: Strong name cannot be ...
2
votes
1answer
1k views

What is the best way to install IronPython on mono on mac?

What is the best way to install ironPython on mono on mac? Should I just download the binaries, ngen, and move forward? Is there any specific plug-in I need for an editor? Everyone seems to think I ...
3
votes
1answer
674 views

How to develop IronPython applications on Mono?

I might need to write some GUI application that runs on .Net (and Windows), while what I can work with is Mono (on Ubuntu and/or Gentoo). I am very familiar with Python; in addition, I understand that ...
1
vote
1answer
622 views

An example of ctypes on IronPython?

I'm trying to understand ctypes, and it's relationship to IronClad, on IronPython. (Ctypes is supposed to be implemented in the latest IronPython release.) Can somebody give a simple example of ctypes ...
2
votes
3answers
1k views

Which IDE do I use to develop a mono app in IronPython?

I'm investigating which platform to use for a cross platform GUI app that needs access to the serial port. Currently I'm thinking on using the mono runtime and monodevelop as the IDE. However, I ...
0
votes
2answers
881 views

How to insert indent/tab in os x terminal for IronPython (ipy.exe)?

I am running IronPython 2.0.2 interactive console with Mono 2.4 on OSX Terminal.app . How do I insert indent/tab in the Terminal.app ? I want to do this so I can indent my code. For example I want ...
2
votes
4answers
2k views

How to run OS shell commands in IronPython/Mono?

I would like to give IronPython and Mono a try. Specifically doing sysadmin tasks. Which often means running OS commands. In CPython I use the subprocess module for such tasks. But in IronPython ...