I was following the first few lines of instructions here, https://docs.python.org/3.4/library/turtle.html, which lead to this masterpiece:
import turtle
turtle.forward(15)
However, after the Python turtle graphics window appears (with the little arrow in the middle), the kernel dies instantly. What do I need to add?
I saw a video where t=turtle.pen()
is added, but it leads to the same result.