我打开 python3 解释器并输入
import scipy.misc
scipy.misc.imsave
结果
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'imsave'
名字变了吗?它在 python2 中运行良好,但可以这么说我宁愿不向后迁移。
我在 Lubuntu 13.04 上有 python 3.3.1,所有模块都是从默认存储库下载的。Scipy 已安装并print(scipy.misc.__doc__)
显示imsave
应该在那里。
编辑:
scipy.__version__
给出 0.11.0
from scipy.misc import imsave
给
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name imsave