官网说明
Note that the Python Imaging Library (PIL) is not a dependencyof SciPy and therefore the pilutil module is not available onsystems that don’t have PIL installed
所以, 必须安装 PIL:
方法 1. 输入 cmd 命令安装, pip install pil
方法 2. 去网址
http://www.pythonware.com/products/pil 下载安装
使用的方法稍微更改, 多了 misc:
>>> import scipy.misc
>>> img = scipy.misc.imread("abc.jpg")