有个好网站[http://www.lfd.uci.edu/~gohlke/pythonlibs/](http://www.lfd.uci.edu/~gohlke/pythonlibs/) , 这个网站可以下载许多非官方的python库的安装包。
1.首先去这个网站下载cx_freeze安装包后安装。
2.在C:\PythonXX\Scripts\ 下可以看到cxfreeze-quickstart.bat, XX为版本号
3.运行cxfreeze-quickstart.bat, 根据向导生成setup.py
setup.py类似如下:
> > import
sys
> > from
cx_Freezeimportsetup, Executable
>
> # Dependencies are automatically detected, but it might need
> # fine tuning.
> > buildOptions = dict(packages = [], excludes = [], include_files={
"DcmStatistics.xsd","dcm2xml.exe","readme.txt","DcmStatisticsResult.xslt"})
>
> > executable =
"DcmFileCompareTool.py"
> > base =
'Console'
> > targetName =
"dcmAnalyzer.exe"
>
> executables = [
> Executable(executable, base=base, targetName=targetName)
> ]
>
> > setup(name=
'dcmanalyzer',
> > version =
'1.0',
> > description =
'convert dcm file to xml, parse xml and create statistics result, arrange dcm file to folders of different companies.',
> options = dict(build_exe = buildOptions),
> executables = executables)
4.executable指定py主文件, base指定生成Exe的类型(Console、Win32GUI)【在C:\PythonXX\Lib\site-packages\cx_Freeze\bases可以看到】, targetName指定生成exe的名字。
include_files指定打包一起的文件。
5.写个setup.bat, 执行编译
> > python setup.py build
> > pause
6.注意,有时打包出来的exe运行错误, 提示缺少inspect,解决办法:
在py主文件的头部添加import inspect
> >
> >
>
>
>
- 前言
- PythonPath在Windows 下的设置
- Sublime Text: [Decode error - output not utf-8]
- Python 写文件时的Unicode设置
- python中文件打开的各个标识含义
- python 3中对list进行sort时,返回值为None
- python 3中使用getattr和*args时, 出现传入参数不一致的问题
- import module, from module import funtion区别
- Python 中list, dictionary 与 file相互操作
- 编译Python出现Tab,空格的问题
- Sublime Text2中Evernote 插件的使用
- python中全局变量的使用
- python中string和bool的转换
- python中http的一些编码转换
- python中http请求中添加cookie支持
- python构造一个http请求
- python中如何定义main方法
- python为类定义构造函数
- python中print的几种用法
- 自己写的工具:把Evernote(印象笔记)的笔记导入到博客(Blog)中
- Python打包成exe
- python中lxml的应用