[Fixed]-No module named PIL.Image

1👍

You should add manually PIL library source in your root path of project.

Download source here http://www.pythonware.com/products/pil/#pil117 and copy PIL directory to your project.

👤Davy

0👍

PIL is not imported as PIL, you just need to import Image directly

import Image

or

from Image import *

Leave a comment