Matplotlib 安装
安装 Matplotlib
如果你已经在系统上安装 Python 和 PIP, 那么 Matplotlib 的安装就很容易了。
使用以下命令安装它:
C:\Users\Administrator>pip install matplotlib
如果此命令失败,请使用已安装 Matplotlib 的 python 发行版,就像 Anaconda, Spyder 等等。
导入 Matplotlib 库
安装 Matplotlib 后,通过添加 import module
声明:
import matplotlib
现在 Matplotlib 已导入并可以使用。
检查 Matplotlib 的版本
版本字符串存储在 __version__
属性中.
实例
import matplotlib
print(matplotlib.__version__)
注意:
__version__
中使用了两个下划线字符。