1

我试图用 pyinstaller 创建一个非常基本的可执行文件,但是当我运行它时,winpexpect(pexpect 的 Windows 版本)给我带来了一个非常难以理解的错误。我真的只能推断出使用 winspawn 类时会发生错误。

C:\Users\Dan\Dropbox\Programming\Python\MC\ServerSense>ServerSense.exe
Traceback (most recent call last):
  File "<string>", line 170, in <module>
  File "<string>", line 52, in __init__
  File "C:\Users\Dan\Dropbox\Programming\Python\Packagers\PyInstaller\PyInstalle
r-2.1\ServerSense\build\ServerSense\out00-PYZ.pyz\winpexpect", line 346, in __in
it__
  File "C:\Users\Dan\Dropbox\Programming\Python\Packagers\PyInstaller\PyInstalle
r-2.1\ServerSense\build\ServerSense\out00-PYZ.pyz\pexpect", line 429, in __init_
_
  File "C:\Users\Dan\Dropbox\Programming\Python\Packagers\PyInstaller\PyInstalle
r-2.1\ServerSense\build\ServerSense\out00-PYZ.pyz\winpexpect", line 401, in _spa
wn
pywintypes.error: (2, 'CreateProcess', 'The system cannot find the file specifie
d.')

谁能提供一些关于我将如何使用 pyinstaller 打包 winpexpect 的见解?它甚至似乎没有让我知道它找不到哪个文件。

4

1 回答 1

0

想通了,我在这里使用了 winpexpect 的分支:https

: //bitbucket.org/weyou/winpexpect/wiki/Home 其中有 cx_freeze 支持,(py2exe 也可以,这是我使用的。)

于 2013-09-26T04:02:02.957 回答