snake_nn
snake_nn copied to clipboard
Snake Game does not work
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
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.
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 ?