>>> import matplotlib.pyplot as plt
Traceback (most recent call last):
File "<console>", line 1, in <module>
ModuleNotFoundError: No module named 'matplotlib'
Asked
Active
Viewed 139 times
0
N0rbert
- 103,523
-
What is your Ubuntu version? – N0rbert Jun 06 '21 at 15:45
1 Answers
1
To install matplotlib for system python use commands below:
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install python3-matplotlib
N0rbert
- 103,523