python打包exe

Posted 北向。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python打包exe相关的知识,希望对你有一定的参考价值。

 1.打包单个python文件,进入存放XXX.py的目录,打开命令窗口,直接使用pyinstaller -F XXX.py

2.打包时取出CMD黑框,pyinstaller -F XXX.py --noconsole

3.打包加入exe图标,pyinstaller -F -i picturename.ico -w XXX.py

4.打包多个目录(多个文件),
pyinstaller -F -i index.ico -c index.py -p F:\\python\\auto_tools\\auto_v3check\\toolpage --hidden-import  v3check.py --hidden-import V3CRCTool-0.0.1-SNAPSHOT.jar

5.打包去除控制台,pyinstaller -w xxx.py

6.打包方便查看报错,可看到控制台,pyinstaller -c xxx.py

7.打包运行出现"Failed to execute script xxx.exe"错误
numpy.core.multiarray failed to import
解决方式:
使用 文本编辑器打开修改xxx.spec

 
然后在运行pyinstaller xxx.spec(以此spec文件打包python) 
 

以上是关于python打包exe的主要内容,如果未能解决你的问题,请参考以下文章

python程序打包成exe文件

详解python文件打包成exe(pyinstaller简介.安装.打包.常见问题)

Python执行pyinstaller打包生成的exe文件实战

复制粘贴,快速将Python程序打包成exe

将Python程序打包为exe方法

python打包exe