当前位置: 代码迷 >> 综合 >> Pyinstaller打包成使用了pyonnet包的exe时报错System.IO.FileNotFoundException:Unable to find assembly ‘XXX.dll‘。
  详细解决方案

Pyinstaller打包成使用了pyonnet包的exe时报错System.IO.FileNotFoundException:Unable to find assembly ‘XXX.dll‘。

热度:8   发布时间:2023-11-28 05:37:32.0

首先pyonnet安装要确保无误,不然会报OSError: cannot load library '';
当前版本是python39,此时pip install pythonnet 报错没有wheel, 需要自行下载,附上大多数wheel的下载链接https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml 下载完成后pip install 路径+wheel名
因为我用到了pythonnet的import clrclr.AddReference('dll名') 且在打包完成后dist文件夹的exe同级目录没有这个dll,
所以报错System.IO.FileNotFoundException:Unable to find assembly 'XXX.dll'。最后自行添加在同级目录即可。

  相关解决方案