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 1,834 times
        
    1
            
            
         
    
    
        desertnaut
        
- 57,590
- 26
- 140
- 166
 
    
    
        S.Xu
        
- 173
- 2
- 3
- 11
- 
                    please include the code you used to import the libraries in your post – DrBwts Apr 28 '20 at 15:27
1 Answers
3
            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
        
- 137
- 9