安装 pip install pyinstaller
pyinstaller Add_Pane.py --noconsole --workpath d:\pybuild --distpath d:\pybuild\dist
pyinstaller CRCC.py --noconsole --workpath d:\pybuild --distpath d:\pybuild\dist
--noconsole
就可以去掉打开程序的黑窗口。
--workpath
指定了制作过程中临时文件的存放目录
--distpath
指定了最终的可执行文件目录所在的父目录
最后 要把 .ui 文件复制到可执行文件的目录里面 要不然找不到界面。
-D 打包多文件
-F 打包单文件