pip install <python_package> 卡住了。

我已将 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"


一只名叫tom的猫
浏览 387回答 3
3回答

凤凰求蛊

安装 pydev 为我解决了“x86_64-linux-gnu-gcc”错误!简单如:sudo&nbsp;apt-get&nbsp;install&nbsp;python-dev对于类似的问题,您可能还需要 build-essential,sudo&nbsp;apt-get&nbsp;install&nbsp;build-essential希望这可以帮助。

跃然一笑

您需要安装 portaudio 开发包:从这里下载 portaudio 的二进制文件将其提取到某个地方在终端中转到该目录(使用cd /where/you/extract/those)在那里运行这个命令:&nbsp;./configure运行这个:&nbsp;make还有这个:&nbsp;sudo make install现在您可以使用 pip 安装 portaudio:$ sudo pip install pyAudioInstalling collected packages: pyAudio&nbsp; Running setup.py install for pyAudio ... doneSuccessfully installed pyAudio-0.2.11

胡子哥哥

试试这个sudo apt-get install python-pyaudio。这应该有效!
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python