1

我使用的命令

!wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl

!pip install /content/~path~/ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl

这给了我一个错误

错误:ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl 不是该平台支持的滚轮。

我该如何解决这个问题?

4

1 回答 1

1

您正在使用wget下拉.whl为不同版本的 Python 构建的文件。你在拉下

ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl

但正在运行 Python 3.7。您需要一个不同的.whl文件,例如:

ds_ctcdecoder-0.9.3-cp37-cp37m-manylinux1_x86_64.whl

可从 GitHub 上的 DeepSpeech 发布页面获得

于 2021-05-26T00:07:25.003 回答