I am trying to get a simple curses script to run using Python (with PyCharm 2.0).
This is my script:
import curses stdscr = curses.initscr() curses.n
You'll see this error if you're using Idle. It's because of Idle's default redirection of input/output. Try running your program from the command line. python3 .py
python3 .py