我如何编译.py到.exe?

时间:2011-10-08 22:09:03

标签: python compiler-errors py2exe

我正在尝试使用以下代码使用py2exe将.py脚本编译成.exe:

from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
setup(
options = {'py2exe': {'optimize': 2}},
windows = [{'script': "get.py"}],
zipfile = "shared.lib",
)

我在我的控制台中得到了这个:

Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>> 
running py2exe
*** searching for required modules ***
*** parsing results ***
creating python loader for extension 'unicodedata' (C:\Python27\DLLs\unicodedata.pyd -> unicodedata.pyd)
creating python loader for extension 'select' (C:\Python27\DLLs\select.pyd -> select.pyd)
creating python loader for extension '_hashlib' (C:\Python27\DLLs\_hashlib.pyd -> _hashlib.pyd)
creating python loader for extension 'bz2' (C:\Python27\DLLs\bz2.pyd -> bz2.pyd)
*** finding dlls needed ***
*** create binaries ***
*** byte compile python files ***
writing byte-compilation script 'c:\docume~1\user\locals~1\temp\tmpduooti.py'
C:\Python27\pythonw.exe -OO c:\docume~1\user\locals~1\temp\tmpduooti.py

Traceback (most recent call last):
  File "C:\Documents and Settings\User\Application Data\.minecraft\saves\HuFAdventure\setup.py", line 7, in <module>
    zipfile = "shared.lib",
  File "C:\Python27\lib\distutils\core.py", line 169, in setup
    raise SystemExit, "error: " + str(msg)
SystemExit: error: command 'C:\Python27\pythonw.exe' failed with exit status 1
>>> 
你能帮忙吗?

1 个答案:

答案 0 :(得分:0)

您是否有意构建基于gui的脚本?如果不将windows = [{'script': "get.py"}],更改为console = ["get.py"],

from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
setup(
    options = {'py2exe': {'optimize': 2}},
    console = ["get.py"],
    zipfile = "shared.lib",
)

如果你正在构建一个窗口程序,那么忽略它并留下评论,这样我就可以删除这个答案。)