【已解决】Pyinstaller打包失败:raise FileNotFoundError(f“Icon input file {icon_path} not found“)

我来猜猜,你是不是加了-windowed来打包文件?这样可能会发生raise FileNotFoundError(f"Icon input file {icon_path} not found")的错误。

经过本人摸索,发现要用-w才可以打包成功,不能用-windowed

比如我要打包demo.py这个文件。

我就得输入pyinstaller -w demo.py

本人开发环境:

python3.9.6

Pycharm2022.3

你可能感兴趣的:(开发语言,python,pycharm,软件工程)