although there are several questions, that cover the same problem, none of these questions/answers solved my problem. I'm using PyCharm 2022.3.2 Community to learn Python. I'm trying to get Turtle to run:
from turtle import Turtle, Screen
timmy = Turtle()
timmy.color("coral")
timmy.forward(100)
timmy.right(90)
timmy.forward(100)
screen = Screen()
screen.exitonclick()
This is not working, PyCharm quits with:
/usr/bin/python3 /home/zwette/PycharmProjects/Day-18-Start/main.py
Traceback (most recent call last):
File "/home/zwette/PycharmProjects/Day-18-Start/main.py", line 1, in <module>
from turtle import Turtle, Screen
ModuleNotFoundError: No module named 'turtle'
Process finished with exit code 1
I already changed Python from venv to systems Python, but turtle is still not found. My system is running under Linux Mint 21 Cinnamon. Any ideas?