为什么我的 python 应用程序没有转换为可执行文件?

Why isnt my python app converting into an executable file?

我正在尝试使用以下命令将我的 python 应用程序制作成 exe:

pyinstaller --onefile --windowed --icon="02d@2x.png" Programmieren\WetterApp.py

我收到这个错误:

line 234, in CopyIcons except win32api.error as W32E:
AttributeError: module 'win32ctypes.pywin32.win32api' has no attribute 'error'

有人知道问题出在哪里吗?应该从我的角度出发。

当我尝试这些东西时,它对我有用。

Try using .ico file for the app icon
Try changing the directory of that .ico file to your script directory and run it again.

您的图标扩展名应为 .ico,将您的 png 转换为 ico 以使其正常工作。