IronPython ImportException: No module named logging(IronPython ImportException:没有名为日志记录的模块)
问题描述
我让 ironpython 在单声道上运行良好,但它没有导入 logging 模块.执行此代码:
I got ironpython working fine on mono, but it doesn't import the logging module.
Executing this code:
ScriptEngine engine = Python.CreateEngine();
dynamic logging = engine.ImportModule("logging");
产生以下错误:
IronPython.Runtime.Exceptions.ImportException: No module named logging
我包含的 IronPython 程序集是最新的:IronPython.Modules.dll、Microsoft.Dynamic.dll、Microsoft.Scripting.dll、Microsoft.Scripting.Metadata.dll.
The IronPython assemblies I have included are up-to-date: IronPython.Modules.dll, Microsoft.Dynamic.dll, Microsoft.Scripting.dll, Microsoft.Scripting.Metadata.dll.
如何使用 Ironpython 中的日志记录模块?
How can I make use of the logging module within Ironpython?
推荐答案
将程序集添加到 C# 应用程序是不够的.logging 是用 python 编写的,它是标准库的一部分.您还必须将标准库添加到 IRONPYTHONPATH.你可以这样做:
It's not enough to add the assemblies to your C# application. logging is written in python, and it's part of the standard library. You'll have to add the standard library to IRONPYTHONPATH as well. You can do it like this:
var engine = Python.CreateEngine();
var paths = engine.GetSearchPaths();
paths.Add(@"C:Path oyourstandardlibrary");
engine.SetSearchPaths(paths);
如果您需要标准库,您可能需要将它与您的应用程序一起提供.我的建议是压缩它,然后将 zip 文件添加到 paths.
If you need the standard library you would probably need to ship it with your application. My suggestion is to zip it and then add the zip file to the paths.
这篇关于IronPython ImportException:没有名为日志记录的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:IronPython ImportException:没有名为日志记录的模块
基础教程推荐
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
