I got this error
AttributeError: module 'scipy.misc' has no attribute 'imread'
I have installed and import "scipy" and "pillow" already. Why I still got this problem?
Asked
Active
Viewed 728 times
0
desertnaut
- 52,940
- 19
- 125
- 157
S.Xu
- 113
- 1
- 3
- 8
-
please include the code you used to import the libraries in your post – DrBwts Apr 28 '20 at 15:27
1 Answers
2
scipy.misc.imread is depreciated in SciPy 1.0.0, and removed in Scipy 1.2.0. The documentation suggests using imageio.imread instead.
https://docs.scipy.org/doc/scipy-1.2.1/reference/generated/scipy.misc.imread.html
R L W
- 127
- 8