Closed jacksteamdev closed 9 months ago
I think I've figured it out. This is the key line:
ERROR: Ignored the following versions that require a different python version:
0.0.10 Requires-Python <=3.11,>=3.8;
0.0.11 Requires-Python <=3.11,>=3.8;
0.0.12 Requires-Python <=3.11,>=3.8;
0.0.13 Requires-Python <=3.11,>=3.8;
0.0.9 Requires-Python <=3.11,>=3.8
I was using Conda for a Python env, but Homebrew to install pipx. It looks like Pipx was confused over the Python version. After I removed the Homebrew pipx, this worked:
conda create -n whisper-310 python=3.10
conda activate whisper-310
pip install pipx
pipx install insanely-fast-whisper==0.0.13
If you see 0.0.8 is the latest version, make sure pipx was installed under the correct Python version.
I'm new to Python, so I'm probably missing something about pipx, but the latest version I'm seeing is 0.0.8:
Related: #100 #78
I ran out of time to debug, but I'll circle back if I find a solution later.