打包成单个文件

setup.py:

1
2
3
4
5
6
7
from distutils.core import setup
import py2exe
import sys

sys.argv.append('py2exe')

setup(options = {'py2exe': {'bundle_files': 1, 'compressed': True}}, console=['image.py'])
python setup.py

常见问题

没有带上自己的包

1
2
3
4
5
6
import sys
sys.path.append(PACKAGE_DIR)

options = {'py2exe': {
'packages': ['PACKAGE_NAME']
}}

留言