欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#使用工具包pythonnetpythonnet调用python的pyd文件

程序员文章站 2021-12-29 11:52:49
python打包成pyd在本篇博客不多叙述,请读者自行百度,本篇博客主要讲解在C#中如何调用pyd以及遇到的一些问题如何解决。1.安装pythonnetpythonnet是一个强大的工具包,用于C#代码与python代码进行交互,不仅可以实现在C#中调用python,也可以实现在python中调用C#.GitHub:https://github.com/pythonnet/pythonnet首先打开nuget包管理器:根据你python的版本下载对应的pythonnet,笔者使用的是pytho...

python打包成pyd在本篇博客不多叙述,请读者自行百度,本篇博客主要讲解在C#中如何调用pyd以及遇到的一些问题如何解决。

1.安装pythonnet

pythonnet是一个强大的工具包,用于C#代码与python代码进行交互,不仅可以实现在C#中调用python,也可以实现在python中调用C#.

GitHub:https://github.com/pythonnet/pythonnet

  • 首先打开nuget包管理器:
    C#使用工具包pythonnetpythonnet调用python的pyd文件
  • 根据你python的版本下载对应的pythonnet,笔者使用的是python3.6,所以下载的是py36。
    C#使用工具包pythonnetpythonnet调用python的pyd文件

2.调用pyd中的模块

  • 首先引用pythonnet:
using Python.Runtime; 
  • 调用psd的模块:
//All calls to python should be inside a using (Py.GIL()) {/* Your code here */} block. using (Py.GIL()) { //Import python modules using dynamic mod = Py.Import("mod"), then you can call functions as normal. //All python objects should be declared as dynamic type. dynamic np = Py.Import("test_pyd"); np.hello(); Console.ReadKey(); } 

C#使用工具包pythonnetpythonnet调用python的pyd文件

  • python代码:
def hello(): print("Hello world") 

3.可能出现的问题及解决方案

  • 环境变量的配置,环境变量的对应路径的python版本需要与你下载的pythonnet包版本是相同的:
    C#使用工具包pythonnetpythonnet调用python的pyd文件
    笔者电脑中有不同版本的python,经过笔者测试后发现更换版本最简单的方式是替换环境变量的顺序,笔者是在win10系统下进行的测试,其他系统未进行过测试。
    另外要注意你的pyd如果是使用64位编译的,则环境变量对应的python版本也需要是64位的。
    当python368在上时:
    C#使用工具包pythonnetpythonnet调用python的pyd文件
    当python378在上时:
    C#使用工具包pythonnetpythonnet调用python的pyd文件
  • System.DllNotFoundException:“无法加载 DLL“python36”: 找不到指定的模块。
    C#使用工具包pythonnetpythonnet调用python的pyd文件
    解决方案:将python文件夹中的python36.dll复制到debug目录下
    C#使用工具包pythonnetpythonnet调用python的pyd文件
  • Python.Runtime.PythonException:“ModuleNotFoundError : No module named ‘test_pyd’”

C#使用工具包pythonnetpythonnet调用python的pyd文件
解决方案:将test_pyd.pyd放入debug目录下
C#使用工具包pythonnetpythonnet调用python的pyd文件

  • System.MissingMethodException:“Method not found: ‘System.Reflection.Emit.AssemblyBuilder System.AppDomain.DefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess)’.”
    C#使用工具包pythonnetpythonnet调用python的pyd文件
    解决方案:该问题是由于.NET框架所导致的,笔者在使用.NET Core 3.1的时候就会出现这个错误,更换为.NET Framework 4.7.2后问题解决。
    C#使用工具包pythonnetpythonnet调用python的pyd文件
    C#使用工具包pythonnetpythonnet调用python的pyd文件

本文地址:https://blog.csdn.net/weixin_45993808/article/details/108847788