AttributeError: module 'scipy.misc' has no attribute 'imrotate'
Opened this issue · 1 comments
soniquentin commented
Hello,
I'm coding in Python and i'm getting this error message (in the title). I have Pillow and Scipy installed. Don't know why it doesn't work. However, it worked when I used Anaconda but for few weeks, I've been using Atom where the problem persists.
Thank you !
jayendrakantipudi commented
Many scipy.misc
functions have been deprecated. For rotation, you can use scipy.ndimage.interpolation.rotate(image, 90)
instead.