Error no module named curses

后端 未结 5 1943
感动是毒
感动是毒 2021-01-04 07:53

When I try to run the following code...

from telnetsrvlib import *

if __name__ == \'__main__\':
\"Testing - Accept a single connection\"
class TNS(SocketSer         


        
5条回答
  •  北海茫月
    2021-01-04 08:10

    You could also look into installing the curses module from here: http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses.

    It allows python's native curses to be used on Windows, so all your standard python curses code can be used.

提交回复
热议问题