English 中文(简体)
Cannot 安装了深层的花 of。
原标题:Cannot install deepspeech of python

I want to use DeepSpeech of Mozilla on my Linux 22.04 system, following this website:

https://deepspeech.readthedocs.io/en/r0.9/?badge=latest 

刚开始,

pip3 install deepspeech

我得出这一错误:

ERROR: Could not find a version that satisfies the requirement deepspeech (from versions: none)
ERROR: No matching distribution found for deepspeech

我进入互联网,采用所有方法,例如使用Pip3而不是Pip3。 我无法解决这个问题。

该网站:

https://github.com/mozilla/DeepSpeech/issues/3693

建议使用档案。 我不理解,在这个步骤中,我应该把哪一个存放处存档。

如果你能够帮助我,那是你们的ice。

问题回答

看来,尽管没有向用户发出明确的信息,但“深pe”似乎不再维持。 然而,目前和新的用户都继续提出拉动要求和公开问题,假设该项目仍在积极发展之中。

查阅这一链接:

Got,它使用一个Python3.7虚拟env。 看来,第3.7条是使用深层气.的最后一个辅助版本。

I m in arch linux, 因此,首先,我不得不从AUR中安装第ython3.7号:

yay -S python37

然后,在我的项目夹中,我创造了一个静脉:

virtualenv -p /usr/bin/python3.7 venv

之后,启动:

source ./venv/bin/activate

然后,你可以安全地做事。

pip install deepspeech

try this uninstall current python on your pc. Then, install python version 3.7.3 and then again try pip install deepspeech. This really works!

我需要开发一种使用沙捞越的旋转工具,因此我做了一些研究,结果是:

  • DeepSpeech - No longer maintained
  • Coqui - No longer actively maintained
  • Whisper - Actively maintained - Applies spelling corrections to the transcription
  • Vosk - Actively maintained (uses Kaldi as core) - transcribe it in the same way it was spoken

我进行了几次测试,并且非常精确地利用Whisper和Vosk两种测试。 BTW,我注意到其记录结果略有不同。 例如,我听说,发言者说:I m gonna have, so Vosk transter it to I m gonna have, and Whisper transter tran specified to 我将获得





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...