Linux下安装matplotlib

一:在Python编程从入门到实践这本书之中讲到linux下安装matplotlib 直接说是使用了一下命令

    

sudo apt-get install python3-matplotlib

如果是Python2.7则使用

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安装matplotlib

pip install--user matplotlib

二:使用yum进行安装

yum install python-matplotlib.x86_64

yum search matplotlib





你可能感兴趣的:(linux)