本文主要是介绍py2exe简单使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、首先下载已安装的对应Python版本的py2exe2、将写好的程序拷入类似文件夹
C:\Python26\Lib\site-packages\py2exe\samples
3、假设写好的程序全部放在capturer文件夹中
4、编写setup.py
如下:
from distutils.core import setup
import py2exe
setup(
# The first three parameters are not required, if at least a
# 'version' is given, then a versioninfo resource is built from
# them and added to the executables.
version = "0.5.0",
description = "py2exe sample script",
name = "py2exe samples",
# targets to build
windows = ["main.py"]#main.py为项目主程序文件
)
5、在doc命令行中进入
C:\Python26\Lib\site-packages\py2exe\samples\capturer
6、运行
Python setup.py py2exe
这篇关于py2exe简单使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!