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:没有名为日志记录的模块
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01