使用py2exe生成独立的exe文件

今天写一个python小脚本,在windows下将当前状态下,所有的task的名字输出到一个文件里,然后将这个脚本转化成exe文件。

先看一下python脚本TaskNameList.py:

 

import subprocess

# running the command "tasklist" in cmd.exe
popen = subprocess.Popen("tasklist",stdout=subprocess.PIPE,shell= True)
namelist = []

# get the task name
for line in popen.stdout.readlines()[3:]:
	name = line.split()[0]
	if name not in namelist:
		namelist.append(name)

popen.stdout.close()

# wirte the name into the file TaskNameList
file = open(r".\TaskNameList.txt",'w')
file.writelines('\n'.join(namelist))	
file.close()

 

接下来我用了第三方的软件py2exe,将python脚本软化为exe可执行文件,在看完了py2exe官网上的tutorial后,写一个setup.py脚本

from distutils.core import setup
import py2exe

setup(console=["'TaskNameList.py"])

 执行python setup.py py2exe后,会生成两个文件夹dist 和build,build文件对我们没有多大用处,而在dist文件夹下,会有一个TaskNameList.exe可执行文件,这就我们要的exe文件,但是,运行这个文件的提前是不能脱离dist这个文件夹,在这个文件夹下的其它文件都是在exe执行时会调用到的,所以要想移动这个文件到,要连同dist这个文件夹一起移动,否则,单独移动exe文件,它是无法正常执行的。所以 最好的能生成一个将exe所调用的文件和其本身都绑定到一起的exe文件。

 

在查阅了资料后,我重写了一setup.py方法:

from distutils.core import setup
import py2exe
import sys
includes = ["encodings", "encodings.*"]  
sys.argv.append("py2exe")
options = {"py2exe":   { "bundle_files": 1 }  
                } 
setup(options = options,
	  zipfile=None, 
	  console = [{"script":'TaskNameList.py'}])
 

这次直接执行python setup.py,就可以生成一个独立的exe文件了,当然这个文件还是在dist文件夹下。

这个文件比之前那个的最重要的改进在于两个参数:

 "bundle_files": 1

 

 我们可以看看官网给出的有效的bundle_files的值:

3 (default)

don't bundle

2

bundle everything but the Python interpreter

1

bundle everything, including the Python interpreter

 zipfile=None, 

zipfile = None指定把library.zip也打包进exe 里了。

 

Ref: http://www.py2exe.org/index.cgi/SingleFileExecutable

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值