python中安装matplotlib

在python中,当你学习数据可视化的时候,肯定离不开matplotlib这一最流行工具。matplotlib是数据可视化的必备神器,是一个功能非常强大的画图工具,可以用来制作各种2D、3D等各种图。下面就是针对不同系统matplotlib的安装方法。
1、在Linux系统中安装
如果你使用的python3

sudo apt-get install python3-matplotlib

如果你使用的python2

sudo apt-get install python-matplotlib

如果你安装了较新的python版本,可能需要安装matplotlib依赖的库:

sudo apt-get install python3.5-dev python3.5-tk tk-dev
sudo apt-get install libfreetype6-dev g++

再使用pip来安装:

pip install --user matplotlib

2、在OS X系统中安装

pip install --user matplotlib

安装时可能需要pip3,而不是pip。如果命令不管用,可删除标志 --user.
可能会出现这类错误:

matplotlib 1.3.1 requires nose, which is not installed.
matplotlib 1.3.1 requires tornado, which is not installed.

只需要安装nose 和tornado即可:

sudo easy_install nose

sudo easy_install tornado

当然有时候也会因为我们的pip版本过低,提示我们升级:

You are using pip version 9.0.1, however version 18.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

这个时候,可以输入:

pip3 install --upgrade pip

3、在windows系统中安装

  自己Google or baidu 啦。过程太复杂了

你可能感兴趣的:(python中安装matplotlib)