When I declare 2 libraries in Python, 2 errors appear: import matplotlib.pylot as plt from scipy import misc
No module named 'matplotlib.pylot' and module 'scipy.misc' has no attribute 'imread'.
Please help me fix it.
When I declare 2 libraries in Python, 2 errors appear: import matplotlib.pylot as plt from scipy import misc
No module named 'matplotlib.pylot' and module 'scipy.misc' has no attribute 'imread'.
Please help me fix it.
You're getting an error because it's not "matplotlib.pylot" but rather "matplotlib.pyplot".