使用py2exe创建exe后,raw_input导致EOFError

时间:2010-11-25 21:14:03

标签: python py2exe eoferror

使用py2exe raw_input()从脚本创建exe后导致EOFError。

我该如何避免这种情况?

 File "test.py", line 143, in main
    raw_input("\nPress ENTER to continue ")
EOFError: EOF when reading a line

1 个答案:

答案 0 :(得分:4)

>>> help(raw_input)
Help on built-in function raw_input in module __builtin__:

raw_input(...)
    raw_input([prompt]) -> string

    Read a string from standard input.  The trailing newline is stripped.
    If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise EOFError.
    On Unix, GNU readline is used if enabled.  The prompt string, if given,
    is printed without a trailing newline before reading.

怎么了?你在键盘上输入什么?

编辑(此处报告评论):

我的猜测是你使用py2exe和“windows”参数,这意味着没有打开控制台 - 没有控制台,没有用于raw_input的stdin。您可以在setup.py中使用“console”参数,并且您的exe将打开一个允许raw_input工作的控制台窗口