Can Whisper be installed using Poetry? #683
Replies: 3 comments 3 replies
-
What seems to be happening here is that poetry does not work with the There is still a workaround that works if you're using poetry. You could execute |
Beta Was this translation helpful? Give feedback.
-
For anyone reading this thread, ultimately I gave up on using Poetry, and instead decided to manage my python package dependencies with pip, pyenv, pyenv-virtualenv, and a
Note that since whisper is installed from a git repository (not from PyPi), you'll need to edit the Hope this is helpful for anyone who couldn't get whisper installed with Poetry and is looking for a decent alternative. |
Beta Was this translation helpful? Give feedback.
-
I managed to install whisper using poetry by adding
to my |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using Poetry to manage my python package dependencies, and I'd like to install Whisper. I tried doing this by adding the following line to my
pyproject.toml
file:And then I ran
poetry update whisper
.While this does work to install Whisper, it doesn't install any of Whisper's dependencies listed in
requirements.txt
. I could manually download all of these dependencies, but this is really something my package manager is supposed to do. Is it possible to use Poetry to automatically download whisper and its dependencies?If Poetry can't do the job here, which other python dependency manager would work? My preferred alternative is Pipenv, or next would be Conda.
Beta Was this translation helpful? Give feedback.
All reactions