首页 > 代码库 > python:打包成exe程序

python:打包成exe程序

1.需要安装 py2exe

2.示例代码:

#exetest.py
#创建一个gui界面,只用一个标签和按钮,无功能

from Tkinter import *
win = Tk()
label = Label(win,text = hello)
btn = Button(win,text = click)
label.pack()
btn.pack()
win.mainloop()

3.配置代码:

#exeset.py

from distutils.core import setup
import py2exe
setup(console=["exetest.py"])  #运行的时候会有CMD窗口
#或者setup(windows=["exetest.py"]) 运行的时候只有GUI

 

4.执行转换

  首先定位到文件目录,然后运行CMD

python exeset.py py2exe 

  执行完毕之后会在该目录中生成一个文件夹dist,里面是生成的exe程序和相关依赖

  相关博客推荐:http://www.cnblogs.com/rj81/p/5495191.html

           http://www.cnblogs.com/chjbbs/archive/2014/01/25/3533187.html [关于pyinstaller的]

python:打包成exe程序