我使用pip install Pillow
从PIP安装了Pillow软件包,并安装了Pillow 3.3.1。我在Mac OS 10.11(El Capitan)上使用Python 2.7。
当我尝试导入Image模块时,我遇到了ImportError: No module named Pillow
。我尝试导入以下内容:
import Pillow
import Image
import Pillow.Image
全部返回相同的ImportError
。
缺少什么?
答案 0 :(得分:2)
使用python -m pip install package_name
然后使用from PIL import Image
导入。