当尝试在Raspbian上安装带有pyaudio的pip install pyaudio时,我得到:
Collecting pyaudio
Could not find any downloads that satisfy the requirement pyaudio
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external pyaudio to allow).
No distributions at all found for pyaudio如何用pyaudio 构建?需要一个特定的工具吗?
发布于 2015-03-05 21:20:47
这样做是可行的:
apt-get install jackd2 libjack-jackd2-0 qjackctl sonic-pi supercollider supercollider-server
git clone http://people.csail.mit.edu/hubert/git/pyaudio.git
cd pyaudio
python setup.py install备注:这个
sudo apt-get update
sudo apt-get install python-pyaudio将安装PyAudio0.2.4版本,该版本不支持使用流callback。
发布于 2015-03-04 21:20:13
尝试使用包管理器安装:
sudo apt-get install python-pyaudiohttps://stackoverflow.com/questions/28865144
复制相似问题