Open mobluse opened 4 months ago
Snek 1.9 for Windows doesn't seem to support the curses module and the stdscr object like in Linux because I get this in Windows:
curses
stdscr
Welcome to Snek version 1.9 > curses.initscr() <stdin>:1 undefined: curses.initscr > stdscr.erase() <stdin>:3 undefined: stdscr.erase
curses can be installed for CPython using pip install windows-curses. Then CPython curses programs for Linux runs in Windows.
pip install windows-curses
Snek 1.9 for Windows doesn't seem to support the
curses
module and thestdscr
object like in Linux because I get this in Windows:curses
can be installed for CPython usingpip install windows-curses
. Then CPython curses programs for Linux runs in Windows.