输入pyinstaller -F wx_dingshi.py
有可能会出现错误PyInstaller cannot check for assembly dependencies.
并且提示Please install PyWin32 or pywin32-ctypes.
问题很明显了,缺少这俩库
输入pip install PyWin32
和 pip install pywin32-ctypes
静等安装。
安装完后再次输入pyinstaller -F wx_dingshi.py
打包完成。
同目录下的dist
文件夹中的wx_dingshi.exe
就是目标exe。
py脚本打包成exe
Your support will encourage me to continue to create!