# Make sure PIL is installed properly

import Image    # get access to module

im = Image.open('turkey.jpg')   # open a jpeg file

im.show()   # display image

