46
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pyaudioのインストールで詰んだ時の対処法

Posted at

TL;DR

  • pyaudioにはportaudioという依存ライブラリが存在
  • pyaudioのインストールにあたっては上記ライブラリのインストールが必要

概要

とある件で使いたかったのでこれを動かそうとしたらpyaudioのビルド中に、gccがfatal error: 'portaudio.h' file not foundとかいうエラー吐いて落ちたので対処法をメモ。

pyaudioとは

WIP

エラーの原因

原因は、依存ライブラリの1つであるportaudioというものが不足していることです。

そのため、このportaudioというライブラリをインストールすれば全て解決です。

対処法

Ubuntu

sudo apt-get install portaudio19-dev
pip install pyaudio

Mac

brew update
brew install portaudio
brew link --overwrite portaudio
pip install pyaudio

参考

46
31
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
46
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?