-1

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. enter image description here

dimay
  • 2,768
  • 1
  • 13
  • 22

1 Answers1

1

You're getting an error because it's not "matplotlib.pylot" but rather "matplotlib.pyplot".

Glatinis
  • 337
  • 1
  • 13