Python文件打包成EXE文件时间:2023-03-08 16:39:01 工具:pyinstaller 安装:pip install pyinstaller 使用: 1 将依赖文件集中到一个文件夹: pyinstaller -D -w xxx.py -w: xxx.py是一个窗体程序。 2 将所有依赖文件都打包到同一个可执行文件中: pyinstaller -F -w xxx.py --icon=xxx.ico 可指定图标