我已将 pip 升级到 19.0.3。然后我删除了 pip==19.0.3 并重新安装了 pip9.0.1。现在每次我尝试安装任何东西时都会出现这条消息。您使用的是 pip 版本 9.0.1,但是,版本 19.0.3 可用。您应该考虑通过“pip install --upgrade pip”命令进行升级。请帮帮我。此外,我无法安装更多的 python 包。pip install pyAudio> Collecting pyAudio Using cached> https://files.pythonhosted.org/packages/ab/42/b4f04721c5c5bfc196ce156b3c768998ef8c0ae3654ed29ea5020c749a6b/PyAudio-0.2.11.tar.gz> Building wheels for collected packages: pyAudio Running setup.py> bdist_wheel for pyAudio ... error Complete output from command> /usr/bin/python -u -c "import setuptools,> tokenize;__file__='/tmp/pip-build-sBep_e/pyAudio/setup.py';f=getattr(tokenize,> 'open', open)(__file__);code=f.read().replace('\r\n',> '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d> /tmp/tmpJr7LNvpip-wheel- --python-tag cp27: running bdist_wheel > running build running build_py creating build creating> build/lib.linux-x86_64-2.7 copying src/pyaudio.py ->> build/lib.linux-x86_64-2.7 running build_ext building '_portaudio'> extension creating build/temp.linux-x86_64-2.7 creating> build/temp.linux-x86_64-2.7/src x86_64-linux-gnu-gcc -pthread> -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/build/python2.7-3hk45v/python2.7-2.7.15~rc1=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/python2.7 -c src/_portaudiomodule.c -o build/temp.linux-x86_64-2.7/src/_portaudiomodule.o > src/_portaudiomodule.c:29:10: fatal error: portaudio.h: No such file> or directory #include "portaudio.h"
3 回答
凤凰求蛊
TA贡献1825条经验 获得超4个赞
安装 pydev 为我解决了“x86_64-linux-gnu-gcc”错误!
简单如:
sudo apt-get install python-dev
对于类似的问题,您可能还需要 build-essential,
sudo apt-get install build-essential
希望这可以帮助。
跃然一笑
TA贡献1826条经验 获得超6个赞
您需要安装 portaudio 开发包:
从这里下载 portaudio 的二进制文件
将其提取到某个地方
在终端中转到该目录(使用
cd /where/you/extract/those
)在那里运行这个命令:
./configure
运行这个:
make
还有这个:
sudo make install
现在您可以使用 pip 安装 portaudio:
$ sudo pip install pyAudio
Installing collected packages: pyAudio
Running setup.py install for pyAudio ... done
Successfully installed pyAudio-0.2.11
添加回答
举报
0/150
提交
取消