Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AttributeError: 'module' object (scipy) has no attribute 'misc'

Tags:

python

scipy

I updated from ubuntu 12.04 to ubuntu 12.10 and the python module I have written suddenly no longer works with the error message that the module scipy does not have the attribute 'misc'. This worked previously. I am still using python 2.7 after the update. Here is where the code crashes

import scipy scipy.misc.imsave(slice,dat) 

Any ideas?

like image 477
moadeep Avatar asked Nov 27 '12 09:11

moadeep


1 Answers

>>> import scipy >>> scipy.misc Traceback (most recent call last):   File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'misc' >>>  >>>  >>> import scipy.misc >>> scipy.misc.imsave <function imsave at 0x19cfa28> >>> 

Which seems to be quite common with scipy.

like image 141
ev-br Avatar answered Oct 13 '22 14:10

ev-br