Import of DLL with pythonnet

22.4k Views Asked by At

I am trying to import and use a DLL in python. Therefore I am using pythonnet.

import sys
import clr

sys.path.append('C:\PathToDllFolder')

clr.AddReference('MyDll.dll')

However the code yields the following error:

Traceback (most recent call last):
  File "E:\NET\NET_test.py", line 6, in <module>
    clr.AddReference('MyDll.dll')
System.IO.FileNotFoundException: Unable to find assembly 'MyDll.dll'.
   bei Python.Runtime.CLRModule.AddReference(String name)

Target runtime of the DLL is: v4.0.30319

Is there any way to find out why the import is failing and how i can fix it?

(If necessary i can also provide the DLL)

4

There are 4 best solutions below

0
On

In python strings "\" is an escape character. To have truly a backslash character in a python string, you need to add a second one: "\\".

Change sys.path.append('C:\PathToDllFolder') to sys.path.append('C:\\PathToDllFolder').

I am not sure about clr.AddReference('MyDll.dll'), the version without .dll should work: clr.AddReference('MyDll')

2
On

use absolute path to your dll

import clr
clr.AddReference(r'C:\PathToDllFolder\MyDll.dll')
0
On

This is how it works for me. Dll sits in '/SDK/dll/some_net64.dll' Note: no .dll extension needed.

import os, sys, clr
dll_dir = './SDK/dll/'
dllname = 'some_net64'
path = r'%s%s' % (dll_dir, dllname)
sys.path.append(os.getcwd())
clr.AddReference(path)
1
On

clr.AddReference() is bad at describing the error. A better way to find out why the import fails is to use this.

#use this section of code for troubleshooting
from clr import System
from System import Reflection
full_filename = r'C:\foo\bar\MyDll.dll'
Reflection.Assembly.LoadFile(full_filename)   #this elaborate the error in details

One possibility is that the system knows that your DLL is downloaded from somewhere else (even Dropbox sync counts) and does not allow you to use that DLL file. In that case, you can download a tool from https://learn.microsoft.com/en-us/sysinternals/downloads/streams and run this command to remove all those flags from the DLL file.

stream -d MyDll.dll

After that, the import with clr.AddReference() should work.