Pyinstaller-FileNotFound错误

Pyinstaller - FileNotFound error(Pyinstaller-FileNotFound错误)

本文介绍了Pyinstaller-FileNotFound错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经创建了一个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。

这篇关于Pyinstaller-FileNotFound错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:Pyinstaller-FileNotFound错误

基础教程推荐