Cannot import scipy.misc.imread

后端 未结 8 1196
南笙
南笙 2020-12-24 04:55

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

8条回答
  •  臣服心动
    2020-12-24 05:06

    If you have Pillow installed with scipy and it is still giving you error then check your scipy version because it has been removed from scipy since 1.3.0rc1.

    rather install scipy 1.1.0 by :

    pip install scipy==1.1.0

    check https://github.com/scipy/scipy/issues/6212

提交回复
热议问题