snake_nn icon indicating copy to clipboard operation
snake_nn copied to clipboard

Snake Game does not work

Open 8BallDuVal opened this issue 7 years ago • 2 comments
trafficstars

Lines 40 and 41 of the snake_game.py game are incorrect:

win = curses.newwin(self.board["width"] + 2, self.board["height"] + 2, 0, 0) curses.curs_set(0)

Error messages: Undefined variable from import: newwin Undefined variable from import: curs_set

8BallDuVal avatar May 23 '18 16:05 8BallDuVal

Just kidding, found out curses is not really supported on windows. It would be nice if you provided documentation on how to get this working on windows machines.

8BallDuVal avatar May 23 '18 17:05 8BallDuVal

Just kidding, found out curses is not really supported on windows. It would be nice if you provided documentation on how to get this working on windows machines.

Did you manage to do differently ?

amapic avatar Dec 17 '18 17:12 amapic