我的python版本为3.7
matplotlib版本为3.1.3
six版本为1.14
当我在jupyter notebook中import matplotlib.pyplot可以运行
但是在Pycharm中import matplotlib.pyplot报错ImportError: DLL load failed: 找不到指定的模块。
##我的解决方案
在anaconda prompt 中
conda list matplotlib
发现有2.2.3版本
故卸载3.1.3
pip uninstall matplotlib
重装
pip install matplotlib==2.2.3
接着重启Pycharm不再报错