I'm using Mac and trying to install the Image package for loading images (example: How do I read an image file using Python?).
I'm using anaconda and PyCharm. The python version is 2.7.10.
If I try: pip install Image
, it shows:
Requirement already satisfied (use --upgrade to upgrade): Image in ./lib/python2.7/site-packages
Requirement already satisfied (use --upgrade to upgrade): pillow in ./lib/python2.7/site-packages (from Image)
Requirement already satisfied (use --upgrade to upgrade): django in ./lib/python2.7/site-packages (from Image)
But when I load it, it says "no module named Image".
I tried to install from PyCharm as well, but I cannot find Image
from the package search (I can find "image" but seems to be a different one).