py2exe 打包的两种方式
Posted hyh123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 打包的两种方式的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot打包的两种方式 - jar方式 和 war 方式