game-of-life
game-of-life copied to clipboard
Freezing under Windows 7
conway.py freezes under Windows 7 for me. The problems are as described here: http://stackoverflow.com/questions/3441874/matplotlib-animation-either-freezes-after-a-few-frames-or-just-doesnt-work
I fixed it in the meantime changing time.sleep(0.1)
to plt.pause(0.1)
.
Even better would be using the update function or GTKAgg.
PS: Thanks for the implementation!
我也遇到了这个问题,用你的方法解决了,谢谢你!Thank you !