>>> import matplotlib.pyplot as plt
Traceback (most recent call last):
File "<console>", line 1, in <module>
ModuleNotFoundError: No module named 'matplotlib'
Asked
Active
Viewed 135 times
0
N0rbert
- 103,263
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,263