codecamp

Matplotlib 安装

本章节,我们使用 pip 工具来安装 Matplotlib 库,如果还未安装该工具,可以参考python 怎么使用pip进行包管理

安装 matplotlib 库:

pip install  matplotlib

安装完成后,我们就可以通过 import 来导入 matplotlib 库。

导入matplotlib库:

import matplotlib

以下实例,我们通过导入 matplotlib 库,然后查看 matplotlib 库的版本号:

实例

import matplotlib

print(matplotlib.__version__)

执行以上代码,输出结果如下:

3.5.2

 由于版本更迭,或许输出结果会有所变动,所以运行结果以最新结果为准!

安装numpy:

接下来的学习中也会使用到numpy库,需要预先安装!

pip install numpy

导入numpy:

通常情况下我们会使用

import numpy

来导入numpy模块进行使用,但在实际开发过程中更多的会顺带设置一个别名,而且通常都为​np​:

import numpy as np


Matplotlib Pyplot
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }