You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote a small test program in snek version 1.9 in most updated Debian GNU/Linux 12 (bookworm) aarch64 installed using apt on Raspberry Pi 4 B and I use LXTerminal 0.4.0, but it doesn't output when I use curses.initscr(), but works when I don't use it. It moves the cursor, but erase() and addstr() doesn't affect the screen.
curses.initscr() # I also tried stdscr=curses.initscr()
stdscr.erase()
stdscr.addstr(5, 16, "Hello")
stdscr.move(9, 0)
stdscr.refresh()
curses.endwin()
I intended to write a small arcade game and then I probably need initscr() in order to read key presses without blocking, but now I'm stuck at not being able to output. Raspberry Pi with this OS and terminal emulator is a very common system.
The text was updated successfully, but these errors were encountered:
I wrote a small test program in
snek
version 1.9 in most updated Debian GNU/Linux 12 (bookworm) aarch64 installed usingapt
on Raspberry Pi 4 B and I use LXTerminal 0.4.0, but it doesn't output when I usecurses.initscr()
, but works when I don't use it. It moves the cursor, buterase()
andaddstr()
doesn't affect the screen.This works:
I intended to write a small arcade game and then I probably need initscr() in order to read key presses without blocking, but now I'm stuck at not being able to output. Raspberry Pi with this OS and terminal emulator is a very common system.
The text was updated successfully, but these errors were encountered: