时间:2021-05-23
cmd 进入要编译的python文件所在的文件夹,
然后
pyinstaller -F hello.pyhello.py就是我要打包的文件。
常用参数:
-F 生成单个的exe文件。
-w 隐藏运行窗口。
-h 可以查看帮助信息,更多指令可以通过这个查看。
最开始 D:\pyinstaller 目录下只有hello.py这一个文件,其它的文件都是后生成的。
生成的exe文件在dist里,这个exe文件单独拿出来放在任何的位置都可以运行。
编译过程:
出现completed successfully就成功了。
96 INFO: PyInstaller: 3.496 INFO: Python: 3.6.897 INFO: Platform: Windows-7-6.1.7601-SP198 INFO: wrote D:\pyinstaller\hello.spec105 INFO: UPX is not available.107 INFO: Extending PYTHONPATH with paths['D:\\pyinstaller', 'D:\\pyinstaller']107 INFO: checking Analysis108 INFO: Building Analysis because Analysis-00.toc is non existent108 INFO: Initializing module dependency graph...110 INFO: Initializing module graph hooks...112 INFO: Analyzing base_library.zip ...4577 INFO: running Analysis Analysis-00.toc4582 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable required by d:\python3.6.8\python.exe5582 INFO: Caching module hooks...5590 INFO: Analyzing D:\pyinstaller\hello.py5596 INFO: Loading module hooks...5597 INFO: Loading module hook "hook-encodings.py"...5845 INFO: Loading module hook "hook-pydoc.py"...5847 INFO: Loading module hook "hook-xml.py"...6152 INFO: Looking for ctypes DLLs6152 INFO: Analyzing run-time hooks ...6164 INFO: Looking for dynamic libraries6287 INFO: Looking for eggs6287 INFO: Using Python library d:\python3.6.8\python36.dll6288 INFO: Found binding redirects:[]6294 INFO: Warnings written to D:\pyinstaller\build\hello\warn-hello.txt6349 INFO: Graph cross-reference written to D:\pyinstaller\build\hello\xref-hello.html6357 INFO: checking PYZ6358 INFO: Building PYZ because PYZ-00.toc is non existent6359 INFO: Building PYZ (ZlibArchive) D:\pyinstaller\build\hello\PYZ-00.pyz7000 INFO: Building PYZ (ZlibArchive) D:\pyinstaller\build\hello\PYZ-00.pyz completed successfully.7006 INFO: checking PKG7007 INFO: Building PKG because PKG-00.toc is non existent7007 INFO: Building PKG (CArchive) PKG-00.pkg8818 INFO: Building PKG (CArchive) PKG-00.pkg completed successfully.8822 INFO: Bootloader d:\python3.6.8\lib\site-packages\PyInstaller\bootloader\Windows-32bit\run.exe8822 INFO: checking EXE8823 INFO: Building EXE because EXE-00.toc is non existent8824 INFO: Building EXE from EXE-00.toc8826 INFO: Appending archive to EXE D:\pyinstaller\dist\hello.exe更多关于将python文件打包exe独立运行程序方法请查看下面的相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在我们完成一个Python项目或一个程序时,希望将Python的py文件打包成在Windows系统下直接可以运行的exe程序。在浏览网上的资料来看,有利用pyi
一、简介 py2exe是一个将python脚本转换成windows上的可独立执行的可执行程序(*.exe)的工具,这样,你就可以不用装python而在wind
一、简介py2exe是一个将python脚本转换成windows上的可独立执行的可执行程序(*.exe)的工具,这样,你就可以不用装python而在window
运行环境:CentOS6.5_x64Python版本:2.6使用pyinstaller打包pyinstaller可以将python程序打包成二进制文件,打包后的
我们用python打包的exe文件的时候,每次运行后面都有一个黑框框,比如我的这个:用tkinter做的图形界面,打包成exe文件,每次运行都先有黑色框框,我们