DeepSpeech: could not find a version that satisfies the requirement deepspeech

I searched everywhere. I am not sure if this is a generic problem with pip or specific to deepspeech. I am able to install other packages through pip though. Any idea why I am getting this and how to resolve this?

I am trying to install deepspeech using pip3 install deepspeech

About this issue

  • Original URL
  • State: closed
  • Created 5 years ago
  • Comments: 39 (3 by maintainers)

Most upvoted comments

The error message is telling you exactly what’s happening:

ERROR: invalid target format: '//native_client:bazel_workspace_status_cmd.sh”'; invalid target name 'bazel_workspace_status_cmd.sh”': target names may not contain non-printable characters: '\x80'

The problem is that weird quote mark there: https://apps.timwhitlock.info/unicode/inspect/hex/201D

\x80 is the second byte in its UTF-8 encoding. bazel is likely decoding that as ASCII. Just clean up your command line to remove any special characters like ” (command line double quotes should be ")

Do you mean you cannot upload for Jetson NANO? You guys already have support for Pi3 right? I am now trying to run deepspeech on RPi3.

Yes, but the upload is not done to the pypi repo, but to one that is enabled by default on Raspbian.

I don’t know if a similar setup is done on the system running on the jetson nano.

Given the situation on armv7 / aarch64 for pip wheels, I’m curious to see pip install --verbose deepspeech @mdasari823

The supported platforms are indicated in the 0.5.1 Release Notes. Unfortunately, the Jetson NANO is not on the list.

However, that said Jetson NANO is an interesting target platform, and we’d be interested in any progress you make on a port.

Is your platform supported?