是否可以将 P4Python API 与 IronPython 一起使用?
是否可以将 P4Python(perforce python api)与 IronPython 一起使用?我想使用 python api,因为它看起来比使用 Perforce API 的 p4.net 实现快得多,但是当我尝试将 p4 导入 IronPython 时,我收到以下错误。
.NET 上的 IronPython 2.6.1 (2.6.10920.0) 4.0.30128.1 输入“帮助”、“版权”、“制作人员”或“许可证”以获取更多信息 信息。
<块引用> <块引用> <块引用>导入 P4 Traceback(最近一次调用最后一次):文件“”,第 1 行, 在文件“C:\Program 文件\IronPython 2.6 for .NET 4.0\lib\site-packages\P4.py",第 210 行,导入错误:否 名为 P4API 的模块
Is it possible to use P4Python (the perforce python api) with IronPython? I'd like to use the python api because it seems much faster than using p4.net implementionat of a Perforce API but when I try to import p4 into IronPython I receive the following error.
IronPython 2.6.1 (2.6.10920.0) on .NET
4.0.30128.1 Type "help", "copyright", "credits" or "license" for more
information.import P4 Traceback (most recent call last): File "", line 1,
in File "C:\Program
Files\IronPython 2.6 for .NET
4.0\lib\site-packages\P4.py", l ine 210, in ImportError: No
module named P4API
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜 P4API 是 CPython 扩展,所以它在 IronPython 中不起作用。在这种情况下,请尝试 ironclad。
I guess P4API is CPython extension so it does not work in IronPython. In that case, try ironclad.