I am learning how to use python by watching some online videos. When I run the code below using PyCharm, I get the following:
macOS 11 or later required!
Process finished with exit code 134 (interrupted by signal 6: SIGABRT)
I have an M1 Mac mini with macOS Big Sur 11.1. This was happening when I had Python 3.8.2. Then, I installed Python 3.9.1. I keep getting the same error. How can I fix this?
import turtle
bob = turtle.Turtle()
print(bob)
