2017-02-10 71 views
1

所以我稱爲腳本papercutter.py和建立一個setup.py根據py2exe教程如下:編譯python腳本與py2exe exe文件,收到錯誤

from distutils.core import setup 
import py2exe 

setup(console=['papercutter.py']) 

因此,按照教程,我跑蟒蛇setup.py py2exe,它看起來成功:

c:\Codes>python setup.py install 
running install 
running build 
running install_egg_info 
Removing C:\Python\Lib\site-packages\UNKNOWN-0.0.0-py3.6.egg-info 
Writing C:\Python\Lib\site-packages\UNKNOWN-0.0.0-py3.6.egg-info 

但是當我運行下一步,蟒蛇setup.py py2exe,我得到錯誤:

c:\Codes>python setup.py py2exe 
running py2exe 
Traceback (most recent call last): 
    File "setup.py", line 4, in <module> 
    setup(console=['papercutter.py']) 
    File "C:\Python\lib\distutils\core.py", line 148, in setup 
    dist.run_commands() 
    File "C:\Python\lib\distutils\dist.py", line 955, in run_commands 
    self.run_command(cmd) 
    File "C:\Python\lib\distutils\dist.py", line 974, in run_command 
    cmd_obj.run() 
    File "C:\Python\lib\site-packages\py2exe\distutils_buildexe.py", line 188,  in run 
    self._run() 
    File "C:\Python\lib\site-packages\py2exe\distutils_buildexe.py", line 267,  in _run 
    builder.analyze() 
    File "C:\Python\lib\site-packages\py2exe\runtime.py", line 157, in analyze 
    self.mf.import_package(modname[:-2]) 
    File "C:\Python\lib\site-packages\py2exe\mf3.py", line 91, in  import_package 
    self.import_hook(name) 
    File "C:\Python\lib\site-packages\py2exe\mf3.py", line 117, in import_hook 
    module = self._gcd_import(name) 
    File "C:\Python\lib\site-packages\py2exe\mf3.py", line 267, in _gcd_import 
    return self._find_and_load(name) 
    File "C:\Python\lib\site-packages\py2exe\mf3.py", line 320, in _ find_and_load 
    self._scan_code(module.__code__, module) 
    File "C:\Python\lib\site-packages\py2exe\mf3.py", line 352, in _scan_code 
    for what, args in self._scan_opcodes(code): 
    File "C:\Python\lib\site-packages\py2exe\mf3.py", line 381, in  _scan_opcodes 
    yield "store", (names[oparg],) 
IndexError: tuple index out of range 

我在做什麼錯在這裏?

注:這是我下面教程:http://www.py2exe.org/index.cgi/Tutorial

另外請注意:我使用py2exe 0.9.2.0和Python 3.6.0。我認爲這些應該一起好。

回答

1

答案位於Traceback的底部。似乎你有一個元組的索引問題。 Python中的索引是0。

+0

雖然我的腳本沒有使用任何數組。我只是去一個網站,然後點擊幾件事 –

+0

您是否嘗試過cx_freeze,它支持python 3.6。 – IamBatman

+0

cx_freeze的發行說明。 http://cx-freeze.readthedocs.io/en/latest/releasenotes.html – IamBatman