红联Linux门户
Linux帮助

matplotlib报错:AttributeError: Unknown property wrap

发布时间:2016-10-14 10:03:10来源:linux网站作者:heybob
环境:ubuntu14.04, python2.7
 
在运行demo时报错:http://matplotlib.org/examples/text_labels_and_annotations/autowrap_demo.html
 
查找到原因:
matplotlib报错:AttributeError: Unknown property wrap
“You are not using 1.5 if the keyword is not working”
自己查了下版本:
>>> import  matplotlib
>>> matplotlib.__version__
'1.3.1'
果然版本太低。
 
之前是用命令sudo apt-get install Python-matplotlib来安装的,查了下,发现ubuntu14.04的python-matplotlib包是1.3的,要到ubuntu16.04才升级到1.5
所以,只能手动安装matplotlib。
 
教程(未测试):http://www.linuxdiyf.com/linux/22795.html
1.下载网址:https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.5.1/
选择matplotlib-1.5.1.tar.gz
2.解压后,cd到该文件夹中。而后输入
python setup.py build
sudo python setup.py install
等待安装完成。 
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25021.html