commands i used
!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
this gives me an error
ERROR: ds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whl is not a supported wheel on this platform.
how can i solve this ?
You are using
wgetto pull down a.whlfile that was built for a different version of Python. You are pulling downds_ctcdecoder-0.9.3-cp36-cp36m-manylinux1_x86_64.whlbut are running Python 3.7. You need a different
.whlfile, such as:ds_ctcdecoder-0.9.3-cp37-cp37m-manylinux1_x86_64.whlThis is available here from the DeepSpeech releases page on GitHub.