在Windows系统中安装matplotlib
前提 python Pycharm
目的:安装matplotlib,使用它来制作开始我们需要的图表
步骤1:下载matplotlib安装程序
下载地址:https://pypi.python.org/pypi/matplotlib/
点击左侧的 Download files 选项
根据自己的需求选择安装包即可
安装包部分名称解释:
├── macosx 指mac系统
├── manylinux 指linux系统
├── win32 指运行在32位win上的python,非windows系统位数
├── win_amd64 指运行在64位win上的python,同上
选择安装包错误出现的提示:
ERROR: matplotlib-3.1.3-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
步骤2:安装matplotlib安装程序
将这个.whl文件(安装程序)复制到你的项目文件夹,打开一个命令窗口(cmd),并切换到该项目文件夹,再使用pip来安装matplotlib
pip命令:
python_work> python -m pip install --user matplotlib-1.4.3-cp35-none-win32.whl
步骤3:测试matplotlib是否安装成功
在Pycharm中新建项目打下如下代码:
import matplotlib
如果没有出现任何错误消息,就说明你的系统安装了matplotlib
步骤3.1:测试matplotlib常见错误
1
Numpy版本问题错误解决方法
【DLL load failed while importing _multiarray_umath】
详情见:
https://blog.csdn.net/qq_33013661/article/details/113252546
2
出现pyparsing版本过低的相关问题
【No module named ‘pyparsing‘】
详情见:
https://blog.csdn.net/qq_29579431/article/details/99236119
3
不少相关库缺失问题
xxxx我遇到的包括
No module named cycler’
AttributeError: module ‘dateutil’ has no attribute ‘version’
可以在pycharm自带的可获取的库资源中按照库的名字安装