matplotlib.pyplot怎么安装,如何安装matplotlib.pyplot as plt 库

  matplotlib.pyplot怎么安装,如何安装matplotlib.pyplot as plt 库

  下载安装Python matplotlib下载Python安装matplotlib测试下载Python下载Python官网入口:https://www.python.org/

  单击加载-窗口

  点击稳定版本下的Python1.8.1-Dec.18,2019。

  选择windows x86-64

executable installer

进行下载。

  选中将Python 3.8添加到路径,然后单击自定义安装以安装Python。

  检查安装后,它会自动添加到环境路径中,如图中的第一行和第二行所示:

  安装matplotlib。因为我试过cmd等在线安装教程,都报错了。最后我选择了暴力安装的方式。

  通过网页下载Matplotlib,点击左侧下载文件,选择相应的版本。

  当我下载2020年的最新版本3.8.1时,我有一个选择:

  Cp38代表版本,python3.8选择CP38;Win64对应win-amd64;

  我选了第三个matplotlib-3 . 1 . 3-cp38-win _ amd64 . whl。

  

再安装matplotlib时需要先安装

  

six cycler dateutil pytz pyparsing numpy kiwisolver

等模块,然后安装matplotlib,就成功了;

  可以在该门户中搜索这些模块,例如:

  最终下载的模块有:

  (上图的python文件下载python就有了,不用自己下载)

把这些模块移入scripts文件夹下

:

  打开cmd命令行

  在你保存的python的根目录下:cd pythonscripts进入scripts目录,输入python-m pip install six-1 . 14 . 0-py2 . py3-none-any . whl,回车安装six模块

安装的顺序是six cycler dateutil pytz pyparsing numpy kiwisolve

。z只需要更改上面文件黄色部分的名称就可以安装了。最后安装matplotilb测试并打开idle (Python 3.8.8

  输入以下代码:

  值得注意的是,不能直接复制粘贴整个东西,会出错。它需要一行一行的,因为python需要换行。

  将matplotlib.pyplot导入为pltlabels=frogs , hogs , dogs , logs sizes=,20,45,10colors=yellowgreen , gold , lightskyblue , lightcoralexplode=0,0.1,0,0 PLT . pie(size,explode=explode,labels=labels,colors=colors,autopct=% 1.1f%% ,shadow=true,start angle=50)PLT . axis( equal )PLT . show(

  Matplotlib案例官网入口

matplotlib.pyplot怎么安装,如何安装matplotlib.pyplot as plt 库