0

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?

desertnaut
  • 52,940
  • 19
  • 125
  • 157
S.Xu
  • 113
  • 1
  • 3
  • 8

1 Answers1

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