跳至主要內容

Pyinstaller打包总结

yczha大约 1 分钟pythonpyinstallerpythonpyinstaller

最近接触 pyinstaller 比较多,也遇到了不少问题,这里写一个总结文章供有相似问题的朋友参考。

环境

我的运行环境为:

  • pyinstaller 3.3.1
  • python 3.6.1
  • windows 10

安装pyinstaller

使用pip 命令安装 pip install pyinstaller

使用 pyinstaller打包代码

  • 最简单的用法就是pyinstaller xxx.py 举个例子,我们现在要打包以下hello.py 文件:
# -*- coding:utf-8 -*-
# 一个测试pyinstaller 打包python代码的例子
# __author__="yooongchun"

print("Hello World!")
  • 现在来打包这个程序,在命令行输入:pyinstaller hello.py 运行即可生成hello.exe的程序,不过,此时生成的包括了两个主要文件夹,一个为build ,另一个为dist 打开dist 发现里面有很多文件,这些是程序运行需要的依赖文件,我们的 hello.exe 也在这里。
  • 带参数打包:带参数打包的形式为pyinstaller -para -para... my.py
  • 可用的参数包括:
    • -F :打包成单文件
    • -p path-1;path-2;...;path-n:指定包的路径打包。这里,由于pyinstaller 经常找不到程序中引用的包,因而需要指定包的路径
    • -i path:指定程序图标,即应用程序 图标 当然,面对复杂的情况,可能有更多问题,可参考这里的文章:http://blog.csdn.net/zyc121561/article/details/79562935