PyCharam AddReferenceToFileAndPath属性错误

时间:2019-03-29 19:39:34

标签: python pycharm dllimport

我正在尝试使用PyCharm访问C#DLL。我可以使用IronPython访问相同的DLL。

现在,我想在pycharm中访问该DLL并开发脚本。

import clr
clr.AddReferenceToFileAndPath(r"C:Calculation.dll")

我收到AttributeError:模块'clr'没有属性'AddReferenceToFileAndPath'错误

1 个答案:

答案 0 :(得分:0)

这里的问题是您要遵循的指南具有一个自定义构建的本地模块,称为clr。

PyPi clr软件包用于编辑控制台字符串外观。

为了解决此问题,您将需要获得作者提供的定制“ clr”模块。