我的脚本是这样的:
from scipy import misc
pic = misc.imread(path_to_image)
它可以在我的Windows机器上运行,但在我在Linux机器上运行时却不行。我收到错误AttributeError: 'module' object has no attribute 'imread'
。
阅读其他一些类似的问题,我已经确认安装了scipy,Pillow也是如此。我正在使用python 3.3.2运行virtualenv,并在那里成功运行其他脚本。