I'm running Fedora 17 and I had Eclipse installed. I'm trying to do an assignment that uses python Turtle by importing turtle. I get red flags whenever I use the turtle methods, like turtle.forward(100)
I get this error:
Traceback (most recent call last):
File "/home/g2n/Desktop/school/college/cs/240/src/cw1/faces.py", line 6, in <module>
import turtle
File "/usr/local/lib/python3.3/turtle.py", line 107, in <module>
import tkinter as TK
File "/usr/local/lib/python3.3/tkinter/__init__.py", line 40, in <module>
import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named '_tkinter'
My pydev
path is /usr/local/bin/python3.3
Anyone help?!