红联Linux门户
Linux帮助

centos安装matplotlib失败如何解决

发布时间:2017-03-09 09:20:16来源:linux网站作者:dataNetplus
本人使用python2.7版本,未安装anaconda集成环境,所以代码中用到matplotlib仍需要导入。但是使用pip install 指令报如下错误:Failed building wheel for subprocess32以及error: command 'gcc' failed with exit status 1
 
尝试先安装pip install subprocess32,然后在本地文件夹下边出现一个subprocess32-3.2.7.tar.gz,通过tar -zxvf subprocess32-3.2.7.tar.gz解压之后,出现subprocess32-3.2.7文件夹,进入文件夹看到有个setup.py文件,用Python setup.py install ,发现安装失败,与直接安装matplotlib包出现同样的问题。搜索了一下第二个错误(error: command 'gcc' failed with exit status 1)通过一下指令解决了问题:
 
sudo yum -y install gcc gcc-c++ kernel-devel
sudo yum -y install python-devel libxslt-devel libffi-devel openssl-devel
然后再python setup.py install 成功安装
再使用pip install matplotlib 也成功安装了matplotlib包。
(可能问题有异同,仅供参考)
 
本文永久更新地址:http://www.linuxdiyf.com/linux/29021.html