python之打包工具pyinstaller

Posted yungcs_

tags:

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

一、安装pyinstaller
pip install pyinstaller

二、打包py文件成为exe
先找到你存放的目录,cd … 例如:cd F:\\TestDemo\\testqt

输入命令:pyinstaller -w -F F:\\TestDemo\\testqt\\ThreadSignalDemo.py
pyinstaller -w -F 文件路径,直接生成了exe以及相关目录
示意图


生成下面两个文件夹以及spec文件

此时,可以修改spec文件设置ico等操作
通过该链接可在线生成ico
http://ico.duduxuexi.com/

spec文件如图

# -*- mode: python -*-
block_cipher = None
a = Analysis(['F:\\\\TestDemo\\\\testqt\\\\ThreadSignalDemo.py'],
             pathex=['F:\\\\TestDemo\\\\testqt'],
             binaries=[],
             datas=[],
             hiddenimports=[],
             hookspath=[],
             runtime_hooks=[],
             excludes=[],
             win_no_prefer_redirects=False,
             win_private_assemblies=False,
             cipher=block_cipher,
             noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
             cipher=block_cipher)
exe = EXE(pyz,
          a.scripts,
          a.binaries,
          a.zipfiles,
          a.datas,
          [],
          name='ThreadSignalDemo',
          debug=False,
          bootloader_ignore_signals=False,
          strip=False,
          upx=False,
          runtime_tmpdir=None,
          console=False, #去掉黑框
          icon='F:\\TestDemo\\testqt\\image\\favicon.ico')

此时可直接用命令打包:pyinstaller -w -F ThreadSignalDemo.spec

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

python文件打包成exe之pyinstaller

Python第三方库:Pyinstaller——神奇的Py打包工具

Python第三方库:Pyinstaller——神奇的Py打包工具

Python利用pyinstaller工具将py文件打包成.exe可执行文件

pyinstaller 打包labelme标注工具免安装python环境

Python3快速入门(十八)——PyInstaller打包发布