使用Curses在Mac上尝试了一个简单的Python 3.4.3程序并得到了这个错误错误:endwin()返回了ERR

时间:2015-10-21 18:02:41

标签: python user-input curses

我试图获得用户输入而不必回击,我看向curses库。但每次我尝试运行该程序时:

import curses
stdscr = curses.initscr()
c = stdscr.getch()
print ('you entered', chr(c))
curses.endwin()

我得到的只是回报:

error                Traceback (most recent call last)
<ipython-input-2-2bb957279c64> in <module>()
3 c = stdscr.getch()
4 print ('you entered', chr(c))
----> 5 curses.endwin()

error: endwin() returned ERR

我知道为什么会这样做吗?

0 个答案:

没有答案