ModuleNotFoundError: No module named ‘matplotlib.pyplot‘

ModuleNotFoundError: No module named ‘matplotlib.pyplot’

Just downgrade, first pip uninstall matplotlib, then specify the version to install:
pip install matplotlib==2.2.3 -i https://pypi.douban.com/simple
or
conda install matplotlib==2.2.3

Guess you like

Origin blog.csdn.net/qq_26460841/article/details/114626779