Solving attributeerror: module ‘Matplotlib’ has no attribute ‘artist’

Error statement:

import pandas as pd

AttributeError: module ‘matplotlib’ has no attribute ‘artist’

Reason:
Matplotlib is not installed, just re install it.

conda uninstall matplotlib
conda install matplotlib

Reference
https://github.com/matplotlib/matplotlib/issues/12626’35;

Read More: