pip matplotlib报错equired packages can not be built解决

Jane ·
更新时间:2024-11-13
· 791 次阅读

pip安装matplotlib

在centos6.5 64bit上用pip安装matplotlib时候报错:

* The following required packages can not be built: * freetype, png error: Setup script exited with 1

这是因为pip不能安装操作系统的依赖库导致的,需要用yum手动安装:

$ yum -y install freetype-devel libpng-devel

如果不知道这些库需要安装的包名,可以查一下:

$ yum search freetype | grep devel freetype-devel.i686 : FreeType development libraries and header files freetype-devel.x86_64 : FreeType development libraries and header files $ yum search png | grep devel libpng-devel.i686 : Development tools for programs to manipulate PNG image libpng-devel.x86_64 : Development tools for programs to manipulate PNG image

referance:

matplotlib简介,安装和简单实例代码

python的numpy模块安装不成功简单解决方法总结

总结

以上就是本文关于pip matplotlib报错equired packages can not be built解决的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

您可能感兴趣的文章:Python+matplotlib+numpy实现在不同平面的二维条形图Python+matplotlib+numpy绘制精美的条形统计图python+matplotlib绘制简单的海豚(顶点和节点的操作)Python matplotlib画图实例之绘制拥有彩条的图表python matplotlib画图实例代码分享Python使用Matplotlib实现Logos设计代码Python使用Matplotlib实现雨点图动画效果的方法python matplotlib中文显示参数设置解析Python通过matplotlib画双层饼图及环形图简单示例Python通过matplotlib绘制动画简单实例



NOT packages matplotlib pip

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章
Florence 2020-12-05
718