没有名为 difflib 的模块
我想使用以下代码从 C# 执行 python 代码。
static void Main(string[] args)
{
ScriptEngine engine = Python.CreateEngine();
ScriptSource source = engine.CreateScriptSourceFromFile(@"F:\Script\extracter.py");
source.Execute();
}
我在 source.Execute() 行遇到问题,收到错误“没有名为 difflib 的模块”。
我的代码有什么问题?
这是我的 python 代码(extracter.py)。
import re
import itertools
import difflib
print "Hello"
I want to execute python code from C# with following code.
static void Main(string[] args)
{
ScriptEngine engine = Python.CreateEngine();
ScriptSource source = engine.CreateScriptSourceFromFile(@"F:\Script\extracter.py");
source.Execute();
}
I have the problem at line source.Execute(), I got error "No module named difflib".
What is wrong in my code?
This is my python code (extracter.py).
import re
import itertools
import difflib
print "Hello"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这看起来像您的引擎无法访问 Python 标准库 - 它看不到
difflib.py
。修复sys.path
或将difflib.py
从 Python 2.6 复制到f:\script
文件夹。re
和itertools
模块是用 C# 编写的,是IronPython.modules.dll
的一部分 - 这就是导入它们的原因。This looks like your engine does not have access to Python standard library - it does not see
difflib.py
. Either fix thesys.path
or copydifflib.py
from Python 2.6 tof:\script
folder.re
anditertools
modules are written in C# and are part ofIronPython.modules.dll
- that's why importing them work.