I am trying to use Curses in PyDev in Eclipse in Win7.
I installed Python 3.2 (64 bit) and curses-2.2.win-amd64-py3.2. When I enter the following test codes in PyDev:
import curses myscreen = curses.initscr() myscreen.border(0) myscreen.addstr(12, 25, "Python curses in action!") myscreen.refresh() myscreen.getch() curses.endwin()
He did not find any syntax error, so I believe that the curses were set correctly.
However, when I ran it as Python Run, the output showed: redirection is not supported. I do not know where this problem comes from. I googled a lot, but cannot find the relevant information.
python curses pydev
shaosh
source share