关于python:ImportError:没有名为Image的模块

ImportError: No module named Image

本问题已经有最佳答案,请猛点这里访问。

我也试过了

1
from PIL import Image

但它给了我ImportError:没有名为PIL的模块。

我已经成功安装了PIL

1
pip install pil

我还安装了xcode命令行工具。 似乎没什么用。

细节:

Mac OS X 10.9

Python 2.7.6

python是/Library/Frameworks/Python.framework/Versions/2.7/bin/python

python是/ usr / bin / python

python是/ usr / local / bin / python

姓名:PIL

版本:1.1.7

位置:/usr/local/lib/python2.7/site-packages/PIL


PIL分布被错误包装用于鸡蛋安装。

安装枕头,友好的PIL叉。


在安装了Python 2和3并且pip2安装的Pillow无法提供Image的系统上,可以以解决ImportError: No module named Image的方式安装PIL for Python 2:

1
easy_install-2.7 --user PIL

要么

1
sudo easy_install-2.7 PIL