Pyinstaller-FileNotFound错误

2022-03-24 00:00:00 python pyinstaller

问题描述

我已经创建了一个python脚本,并使用以下命令将其转换为.exe文件:

Pyinstaller –-onefile RFOutputGraphs.py

它可以工作,但是脚本中的一个作业失败,尽管它在从Python运行时工作正常。

我的错误是:

      FileNotFoundError: [Errno 2] no such file or directory:
     'C:\Users\Nicholas\AppData\Local\Temp\_MEI30362\currency_converter
     \eurofxref-hist.zip'

我猜它无法识别可能是不寻常的模块(CurrencyConverter)

是否有解决此问题的方法?

谢谢


解决方案

您可以使用--add-binary选项将压缩文件包含在由Pyinstaller创建的.exe中:

Pyinstaller --add-binary <path to zip>;currency_converter --onefile RFOutputGraphs.py 
这会将zip文件从其在PC上的位置复制到.exe文件中,并安排在运行.exe时将其解压缩到currency_converter文件夹(错误消息中提到的位置)。请查看Using Pyinstaller。

相关文章