Home > database >  I'm trying to run a python program that requires matplotlib, which I've already installed
I'm trying to run a python program that requires matplotlib, which I've already installed

Time:09-02

import pandas as pd from matplotlib import pyplot as plt import seaborn as sns

ModuleNotFoundError Traceback (most recent call last) Input In [2], in <cell line: 2>() 1 import pandas as pd ----> 2 from matplotlib import pyplot as plt 3 import seaborn as sns

ModuleNotFoundError: No module named 'matplotlib'

CodePudding user response:

Try to install matplotlib pip install matplotlib. After install matplotlib restart your kernel. :)

CodePudding user response:

#            
  • Related