Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: ERROR: No matching distribution found for coqui-stt-ctcdecoder==1.0.0 #2366

Open
amrzv opened this issue Jul 15, 2024 · 2 comments
Open
Labels
bug Something isn't working

Comments

@amrzv
Copy link

amrzv commented Jul 15, 2024

Describe the bug
Can't install ! pip install coqui_stt_training

To Reproduce
Open the colab notebook and run all cells.

Expected behavior
Expected the installation to be successful

! pip install -U pip
! pip install coqui_stt_training

Environment (please complete the following information):
Default colab environment

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 79
model name	: Intel(R) Xeon(R) CPU @ 2.20GHz
stepping	: 0
microcode	: 0xffffffff
cpu MHz		: 2200.224
cache size	: 56320 KB
DISTRIB_DESCRIPTION="Ubuntu 22.04.3 LTS"

Additional context
image

@amrzv amrzv added the bug Something isn't working label Jul 15, 2024
@comodoro
Copy link
Contributor

Chrck the Python version on Colab, I think they are currently on 3.10, while coqui_stt_training requires <3.10, as seen in your error message. You could try downgrading the version on Colab; one time it was possible, not sure if it is now. You have to search yourself.

@mmokrejs
Copy link

mmokrejs commented Oct 28, 2024

Same happened to me, one needs to force an older python version.

virtualenv -p python3.9 coqui-stt
source coqui-stt/bin/activate
python -m pip install -U pip
python3.9 -m pip install coqui-stt-model-manager

Maybe the https://stt.readthedocs.io/en/latest/#quickstart could be improved to call python3.9 directly?

BTW: Too new version of numpy is pulled in (2.0.2), one needs to do now:

python3.9 -m pip uninstall numpy
python3.9 -m pip install 'numpy<2'

to get numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl installed.

But then you hit #2358 which is a dead end. The language models are gone.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants