gpt4 book ai didi

c# - 使用单声道从 C# 调用 IronPython 对象

转载 作者:行者123 更新时间:2023-11-30 13:24:32 25 4
gpt4 key购买 nike

我有以下 IronPython 代码。

class Hello:
def __init__(self):
pass
def add(self, x, y):
return (x+y)

我需要从 C# 调用它,我想出了以下代码。

using System;
using IronPython.Hosting;
using IronPython.Runtime;
using IronPython;
using Microsoft.Scripting.Hosting;
using Microsoft.Scripting;

class Hello {
public static void Main()
{
ScriptEngine engine = Python.CreateEngine();
ScriptSource script = engine.CreateScriptFromSourceFile("myPythonScript.py");
ScriptScope scope = engine.CreateScope();

script.Execute(scope);
}
}

复制 IronPython.dll 后,我运行以下命令。 (我尝试运行 gacutil,但我得到了一些 errors

 dmcs /r:IronPython.dll callipy.cs

但是我得到了如下一些错误信息。

Could not load file or assembly 'Microsoft.Scripting.ExtensionAttribute, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.Missing method .ctor in assembly /Users/smcho/Desktop/cs/namespace/IronPython.dll, type System.Runtime.CompilerServices.ExtensionAttributeCan't find custom attr constructor image: /Users/smcho/Desktop/cs/namespace/IronPython.dll mtoken: 0x0a000080Could not load file or assembly 'Microsoft.Scripting.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.Could not load file or assembly 'Microsoft.Scripting.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.Could not load file or assembly 'Microsoft.Scripting.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies....

IronPython 似乎需要 Microsoft.Scipting.Core,但对于 mono 我不知道该怎么做?

  • C# 可以在 Mono 上运行 IronPython 对象吗?如果可以,该怎么做?

最佳答案

IronPython 不是一个独立的 DLL。它有一些本应随 IronPython 一起提供的依赖项(它们包含在最新的针对 .NET 2.0 的压缩分发版中——请参阅 IronPython download page):

IronPython.Modules.dll
Microsoft.Dynamic.dll
Microsoft.Scripting.dll
Microsoft.Scripting.Core.dll
Microsoft.Scripting.Debugging.dll
Microsoft.Scripting.ExtensionAttribute.dll

确保您的项目可以找到这些 DLL(目前找不到,这就是您遇到错误的原因)。我从未尝试过在 Mono 上运行 IronPython,但它 should work .

请注意,针对 .NET 4.0 的 IronPython 版本不包括(或不需要)Microsoft.Scripting.Core.dll 和 Microsoft.Scripting.ExtensionAttribute.dll,因为它们的功能已合并到 System.Core。参见 this answer了解更多详情。

关于c# - 使用单声道从 C# 调用 IronPython 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3902059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com