python中import matplotlib.pyplot as plt解决办法

环境

安装版本python3.7.4,win10系统
python安装包下载来源:https://www.python.org/downloads/windows/
里面的 Windows x86 executable installer
下载下来是python-3.7.4-amd64.exe

遇到问题:

本来win7的时候没任何问题,重装系统换了win10,问题来了
运行了个程序,报错
import matplotlib.pyplot as plt
ModuleNotFoundError: No module named ‘matplotlib’
百度之后,发现是没有matplotlib这个模块

解决过程

按这个网址的方法
https://blog.csdn.net/andyL_05/article/details/84994101
安装新版本matplotlib,升级到3.0以后的
pip install -U matplotlib
一定注意,这个命令不是在python里输入的,是在CMD里输入的。
在CMD里输入之后,一顿自动操作,最后出来黄色的字
You are using pip version 19.0.3, however version 19.2.3 is available.
You should consider upgrading via the ‘python -m pip install --upgrade pip’ command
按它的要求,输入python -m pip install --upgrade pip
升级成功。
python中import matplotlib.pyplot as plt解决办法_第1张图片
再看看matplotlib有没有安装成功,如下图,成功了
python中import matplotlib.pyplot as plt解决办法_第2张图片

看一下matplotlib模块的版本号,3.1.1,OK搞定
查看版本号

你可能感兴趣的:(python问题)