无法为 pyaudio 构建轮子,因为未安装包 'wheel'
Could not build wheels for pyaudio, since package 'wheel' is not installed
我尝试安装 pyaudio
,但 returns 出现如下错误:
Could not build wheels for pyaudio, since package 'wheel' is not installed.
我该如何解决这个问题?
看来您只需要安装 wheel
包。
您可以在终端通过 运行 pip install wheel
执行此操作。
升级 pip setuptools wheel 对我有用。
pip install --upgrade pip setuptools wheel
自从我升级到 pip 20 后,这个问题就开始出现了。这里有一些 link 我觉得有用 Could not build wheels
我尝试安装 pyaudio
,但 returns 出现如下错误:
Could not build wheels for pyaudio, since package 'wheel' is not installed.
我该如何解决这个问题?
看来您只需要安装 wheel
包。
您可以在终端通过 运行 pip install wheel
执行此操作。
升级 pip setuptools wheel 对我有用。
pip install --upgrade pip setuptools wheel
自从我升级到 pip 20 后,这个问题就开始出现了。这里有一些 link 我觉得有用 Could not build wheels