Python Forum
ModulNotFoundError matplotlib
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ModulNotFoundError matplotlib
#3
(Apr-26-2024, 01:14 AM)deanhystad Wrote: How did you install matplotlib? Import does not install a package.
I went to matplotlib's website and did a bunch of things that it seemed to be telling me to do to get matplotlib. I'm not sure how to check what you're asking, though I'll repost.
import matplotlib.pyplot as plt
import numpy as np

# Fixing random state for reproducibility
np.random.seed(19680801)


N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = (30 * np.random.rand(N))**2  # 0 to 15 point radii

plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.show()
and here's the error:

Error:
= RESTART: C:\Users\richb\AppData\Local\Programs\Python\Python312\Lib\idlelib\scatter_plot.py Traceback (most recent call last): File "C:\Users\richb\AppData\Local\Programs\Python\Python312\Lib\idlelib\scatter_plot.py", line 1, in <module> import matplotlib.pyplot as plt ModuleNotFoundError: No module named 'matplotlib'
Reply


Messages In This Thread
ModulNotFoundError matplotlib - by WicardBohnam - Apr-26-2024, 12:05 AM
RE: ModulNotFoundError matplotlib - by deanhystad - Apr-26-2024, 01:14 AM
RE: ModulNotFoundError matplotlib - by WicardBohnam - Apr-26-2024, 04:16 PM
RE: ModulNotFoundError matplotlib - by deanhystad - Apr-26-2024, 04:36 PM
RE: ModulNotFoundError matplotlib - by WicardBohnam - Apr-26-2024, 04:49 PM
RE: ModulNotFoundError matplotlib - by deanhystad - Apr-26-2024, 04:59 PM
RE: ModulNotFoundError matplotlib - by WicardBohnam - Apr-26-2024, 05:13 PM
RE: ModulNotFoundError matplotlib - by snippsat - Apr-26-2024, 05:07 PM
RE: ModulNotFoundError matplotlib - by snippsat - Apr-26-2024, 05:38 PM
RE: ModulNotFoundError matplotlib - by WicardBohnam - Apr-27-2024, 01:25 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Matplotlib: How do I convert Dates from Excel to use in Matplotlib JaneTan 1 3,383 Mar-11-2021, 10:52 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020