安装matplotlib包可以直接按照其官网的方法:
python -mpip install -U pip (我之前用apt装了pip,所以没有执行这一步)
python -mpip install -U matplotlib
( 参考 https://matplotlib.org/users/installing.html#linux )
但是安装之后在python环境下导入pylab模块或者pyplot模块时会提示如下错误:
No module named _tkinter, please install the python-tk package
这是由于python的版本没有包含tkinter的模块,只需要把tk的package安装就可以了。 一般在linux才出现,windows版本一般已经包含了tkinter模块。
apt-get install python-tk
( http://blog.csdn.net/yagamil/article/details/49683187 )
Okay.