views:

32

answers:

2

I'm typing at the console

from graphics import * 

and I get this error

Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
from graphics import *
ImportError: No module named graphics
A: 

did you follow the instructions to install the graphics module and is it in your pythonpath?

Gary
A: 

Perhaps you forgot to run python setup.py -install after downloading the module.

duffymo