No module named Image tk

python

Solution

This says that python is installed in non-standard location so the OS can not find ImageTk as it look in standard locations. You can re-install Python in a standard location, and where that is depends on which operating system and which installer you are using, or append this location to sys.path. I'm using Ubuntu 13.04 and I simply install ImageTk package by using terminal like:

sudo apt-get install python-imaging-tk

Problem

I am new to python can any body please Help ``` D:\python\sub>python app.py Traceback (most recent call last): File "app.py", line 2, in <module> import ImageTk ImportError: No module named ImageTk ```

Original source

Related problems