a***@public.gmane.org
2014-06-16 08:07:14 UTC
Hello,
I'm a beginner in pythonnet, and I try to use an external assembly with pythonnet.
I use python 2.7.7, and a pythonnet version installed with pip install --pre pythonnet. I have also installed the framework 4
I try to load for instance the tamir dll (net version 1.1).
Assembly and source available here : http://www.tamirgal.com/blog/page/SharpSSH.aspx
source code :
import sys
sys.path.append("E:\Alex\dotnet\SharpSSH")
import clr
clr.AddReference("Tamir.SharpSsh" )
I obtain the following error :
E:\Alex\python>testdotnet.py
Traceback (most recent call last):
File "E:\Alex\python\testdotnet.py", line 10, in <module>
clr.AddReference("Tamir.SharpSsh")
System.IO.FileNotFoundException
What is wrong in my use of pythonnet ? I have checked that there is a namespace Tamir.SharpSsh in dll source files. It is also possible to load this assembly with Ctypes : windll.LoadLibrary("E:\Alex\dotnet\SharpSSH\Tamir.SharpSsh.dll")
Many thanks for your help.
Alexandre
I'm a beginner in pythonnet, and I try to use an external assembly with pythonnet.
I use python 2.7.7, and a pythonnet version installed with pip install --pre pythonnet. I have also installed the framework 4
I try to load for instance the tamir dll (net version 1.1).
Assembly and source available here : http://www.tamirgal.com/blog/page/SharpSSH.aspx
source code :
import sys
sys.path.append("E:\Alex\dotnet\SharpSSH")
import clr
clr.AddReference("Tamir.SharpSsh" )
I obtain the following error :
E:\Alex\python>testdotnet.py
Traceback (most recent call last):
File "E:\Alex\python\testdotnet.py", line 10, in <module>
clr.AddReference("Tamir.SharpSsh")
System.IO.FileNotFoundException
What is wrong in my use of pythonnet ? I have checked that there is a namespace Tamir.SharpSsh in dll source files. It is also possible to load this assembly with Ctypes : windll.LoadLibrary("E:\Alex\dotnet\SharpSSH\Tamir.SharpSsh.dll")
Many thanks for your help.
Alexandre