Python curses Redirection is not supported

后端 未结 4 488
孤城傲影
孤城傲影 2021-01-02 00:59

I am trying to use Curses in PyDev in Eclipse in Win7.

I have installed Python 3.2 (64bit) and curses-2.2.win-amd64-py3.2. When I input the following testing codes i

4条回答
  •  执笔经年
    2021-01-02 01:48

    You can't use any IDE to run python files with the curses package. I used to run in pycharm and naturally couldn't run.

    Change to the command line to run:

    for testing follow my following steps

    1. on desktop open notepad and copy paste the code and save it as filename.py
    2. open command line change directory to desktop use below command cd Desktop and hit enter type python example.py and hit enter, your program will definitely run

提交回复
热议问题