Python for .NET import error -
i trying use functions dll 'xxx_clr.dll' contains 'xxx_clr' assembly. here code:
import clr print clr.findassembly('xxx_clr') print clr.addreference('xxx_clr') import xxx_clr
which gives me importerror:
c:\windows\microsoft.net\framework64\v4.0.30319\\xxx_clr.dll xxx_clr, version=1.0.0.0, culture=neutral, publickeytoken=null traceback (most recent call last): file "c:\cygwin64\home\user\owncloud\projects\biotic\spectrum\code\hamamatsu.py", line 6, in <module> import xxx_clr importerror: no module named xxx_clr
Comments
Post a Comment