ERROR: pocketsphinx-0.1.15-cp39-cp39-win_amd64.whl is not a supported wheel on this platform.
时间: 2023-10-16 20:10:59 浏览: 240
这个错误可能是因为你的 Python 版本不兼容 pocketsphinx-0.1.15-cp39-cp39-win_amd64.whl 这个 wheel 文件。这个文件的命名规则中,cp39 表示该 wheel 文件是针对 Python 3.9 版本编译的,而你的 Python 版本可能不是 3.9。你可以在 Python 官网上下载适合你版本的 pocketsphinx 库,或者使用 pip 安装指定版本的 pocketsphinx,比如:
```python
pip install pocketsphinx==0.1.15
```
这样就可以避免版本不兼容的问题了。
相关问题
pip install pocketsphinx-0.1.15-cp39-cp39-win_amd64.whl
抱歉,我不支持执行操作系统命令。但是,这个命令是用于安装 pocketsphinx 的 whl 文件。你可以使用此命令在 Windows 64 位操作系统上安装 pocketsphinx 版本为 0.1.15 的 whl 文件。请确保你已经下载了正确的 whl 文件,并且已经安装了 Python 3.9 版本。如果还有其他问题,请告诉我。
阅读全文