我刚刚安装了scipy(通过easy_install scipy
),但由于某些原因scipy.misc
丢失了。
看看这个:
>>> import scipy
>>> scipy
<module 'scipy' from '/home/boda/python-2.7.1/lib/python2.7/site-packages/scipy-0.11.0-py2.7-linux-i686.egg/scipy/__init__.pyc'>
>>> scipy.misc
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'misc'
有谁知道会发生什么? scipy.misc
遗漏了0个谷歌搜索结果。我似乎是第一个发生这种情况的人。
答案 0 :(得分:8)
scipy中的模块无法作为基本scipy包的属性访问。您需要import scipy.misc
或from scipy import misc
。