Fork me on GitHub

py脚本打包成exe

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

Your support will encourage me to continue to create!