当我试图在GoogleColab上训练DeepSpeech模型时,我得到一个错误,即.whl文件不受支持

2024-05-11 20:45:19 发布

您现在位置:Python中文网/ 问答频道 /正文

我使用的命令

!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

这给了我一个错误

ERROR: ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl is not a supported wheel on this platform.

我怎样才能解决这个问题


Tags: https命令githubcommozilladswgetx86
1条回答
网友
1楼 · 发布于 2024-05-11 20:45:19

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

ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl

但是我们正在运行Python3.7。您需要一个不同的.whl文件,例如:

ds_ctcdecoder-0.9.3-cp37-cp37m-manylinux1_x86_64.whl

这是available here from the DeepSpeech releases page on GitHub

相关问题 更多 >