>>> import matplotlib.pyplot as plt
Traceback (most recent call last):
File "<console>", line 1, in <module>
ModuleNotFoundError: No module named 'matplotlib'
Asked
Active
Viewed 97 times
1
N0rbert
- 97,162
- 34
- 239
- 423
ait-izana smail
- 11
- 2
-
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
- 97,162
- 34
- 239
- 423