Hi, there
I followed the instruction in
native_client/README.rst to build deepspeech on a jetson xavier.
Transcribe an audio file this part has been confirmed and it works fine.
deepspeech --model deepspeech-0.5.1-models/output_graph.pbmm --lm deepspeech-0.5.1-models/lm.binary --trie deepspeech-0.5.1-models/trie --audio audio/2830-3980-0043.wav
Now I am try to make the sample work mic_vad_streaming
realizing I will also need to build the Python bindings.
And error came like:
pip3 install ./deepspeech-0.5.1-cp27-cp27mu-linux_aarch64.whl
ERROR: deepspeech-0.5.1-cp27-cp27mu-linux_aarch64.whl is not a supported wheel on this platform.
Sorry I am pretty new to python, am I doing something thing wrong with the building for deepspeech?
Python 3.6.8 (default, Oct 7 2019, 12:59:55)
[GCC 8.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.
from pip._internal.pep425tags import get_supported
get_supported()
[(‘cp36’, ‘cp36m’, ‘manylinux2014_aarch64’), (‘cp36’, ‘cp36m’, ‘linux_aarch64’), (‘cp36’, ‘abi3’, ‘manylinux2014_aarch64’), (‘cp36’, ‘abi3’, ‘linux_aarch64’), (‘cp36’, ‘none’, ‘manylinux2014_aarch64’), (‘cp36’, ‘none’, ‘linux_aarch64’), (‘cp35’, ‘abi3’, ‘manylinux2014_aarch64’), (‘cp35’, ‘abi3’, ‘linux_aarch64’), (‘cp34’, ‘abi3’, ‘manylinux2014_aarch64’), (‘cp34’, ‘abi3’, ‘linux_aarch64’), (‘cp33’, ‘abi3’, ‘manylinux2014_aarch64’), (‘cp33’, ‘abi3’, ‘linux_aarch64’), (‘cp32’, ‘abi3’, ‘manylinux2014_aarch64’), (‘cp32’, ‘abi3’, ‘linux_aarch64’), (‘py3’, ‘none’, ‘manylinux2014_aarch64’), (‘py3’, ‘none’, ‘linux_aarch64’), (‘cp36’, ‘none’, ‘any’), (‘cp3’, ‘none’, ‘any’), (‘py36’, ‘none’, ‘any’), (‘py3’, ‘none’, ‘any’), (‘py35’, ‘none’, ‘any’), (‘py34’, ‘none’, ‘any’), (‘py33’, ‘none’, ‘any’), (‘py32’, ‘none’, ‘any’), (‘py31’, ‘none’, ‘any’), (‘py30’, ‘none’, ‘any’)]
Thank you in advance for your time and support.