AttributeError: 'module' object (scipy) has no attribute 'misc'

前端 未结 4 737
無奈伤痛
無奈伤痛 2020-12-01 09:58

I updated from ubuntu 12.04 to ubuntu 12.10 and the python module I have written suddenly no longer works with the error message that the module scipy does not have the attr

4条回答
  •  有刺的猬
    2020-12-01 10:41

    imread is depreciated after version 1.2.0 ! So to solve the problem I had to install 1.1.0 version.

     pip install scipy==1.1.0
    

提交回复
热议问题