py2exe 使用简介

使用pyinstaller ,真是受够了,各种bug,各种莫名其妙的情况,也是够了

使用py2exe,学习的时候麻烦,但是打包时候真的太方便了

  1. 安装py2exe,网址http://www.py2exe.org/ 选择对应的版本下载;
  2. 撰写setup.py文件`# -- coding:utf-8--

import py2exe
from distutils.core import setup

setup(
windows=[{“script”:’MergeJPG.py’, “icon_resources”: [(1, “earth.ico”)]}],
options={“py2exe”: { “includes”: [“sip”]} },
)
`
3. 注意事项,主要包括win7图标显示问题,参照http://blog.csdn.net/u010000209/article/details/18762445 说的非常详细。

你可能感兴趣的:(py2exe)