首页 > 代码库 > py2exe 打包的两种方式

py2exe 打包的两种方式

cmd模式

#!/usr/bin/python
#-*- coding: UTF-8 -*-
from distutils.core import setup
import py2exe
setup(console = [‘hello.py‘])

窗口模式

#!/usr/bin/python

#-*- coding: UTF-8 -*-
from distutils.core import setup
import py2exe
setup(windows= [‘hello.py‘])

  

py2exe 打包的两种方式