centos7.2 pip 安装找不到文件问题

2017-6-13 Frank 服务器

安装

yum install pyaudio

错误示例

 _posixsubprocess.c:3:20: fatal error: Python.h: No such file or directory


src/_portaudiomodule.c:29:23: fatal error: portaudio.h: No such file or directory

解决办法

yum install python-dev

yum install -y portaudio portaudio-devel && pip install pyaudio

分析

centos7.2新版本需要安装开发扩展devel版本

发表评论 登录

Top