6

我的 C# 代码:

//Create the ScriptRuntime
engine = Python.CreateEngine();
//Create the scope for the ScriptEngine
scope = engine.CreateScope();


string pyfile = "D:\\MyAddin\\test.py";
ScriptSource source = engine.CreateScriptSourceFromFile(pyfile);
var rt = source.Execute(scope);

和我的test.py:

import os
import sys
...
print("test")
...

我在构建时没有问题,但在运行时 VS 给我一个错误“无法导入模块“os””。错误在哪里?

4

1 回答 1

7

在您的代码中托管 IronPython 时,您需要将库添加到您的路径中。默认情况下,并非所有内容都将包含在内。

您可以通过引擎添加它:

var engine = Python.CreateEngine();
var paths = engine.GetSearchPaths();
paths.Add(@"C:\Program Files (x86)\IronPython 2.7\Lib");
//paths.Add(@"C:\Python27\Lib"); // or you can add the CPython libs instead
engine.SetSearchPaths(paths);

或通过您的脚本:

import sys
sys.path.append(r'C:\Program Files (x86)\IronPython 2.7\Lib')
import os
于 2013-08-01T17:25:05.893 回答