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:
#