I\'ve seen this problem before with other people, but haven\'t found a fix.
All I\'m trying to do is:
from scipy.misc import imread
and
Scipy deprecated the image I/O functionality in v1.0 :
imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use imageio.imread instead
Using the imageio module:
img = imageio.imread(fina)
There may be some differences. See https://imageio.readthedocs.io/en/stable/scipy.html
You might need to install PIL or Pillow.