4
我的C#代碼:的IronPython無法導入模塊 「OS」
//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「」。錯誤在哪裏?
但Python腳本將被安裝在正確的蟒蛇路徑?不在鐵蟒安裝路徑中 – pyd