Calvin Jones
Calvin Jones

Reputation: 367

Image Module Python

I'm getting an error about a module and have searched for a solution for some time now and have come up empty handed. I'm coding in python and working in eclipse pydev. At the top of my code I typed.

import Image

I get a error that states ImportError: No module named Image

Here is just some screenshots of the Python Interpreter System Pythonpath

http://imageshack.us/a/img5/614/92989360.png

http://imageshack.us/f/545/79985417.png/

Upvotes: 1

Views: 5444

Answers (1)

Michael Place
Michael Place

Reputation: 3046

You need to install the Python Image Libray:

PIL

You can install it using pip via:

pip install PIL

Upvotes: 4

Related Questions