From cc1e1d12101ca4fdf8612bb03ec49a7012945ed5 Mon Sep 17 00:00:00 2001 From: Jonathan DUMONT <5204724+JOduMonT@users.noreply.github.com> Date: Sun, 16 Nov 2025 08:02:40 +0100 Subject: [PATCH] Change installation command for openai-whisper Updated installation command for openai-whisper to use pipx. Because pip need a virtual env - **hint**: See PEP 668 for the detailed specification. While `pipx` take care of everything. If the How-tos want to be even more accessible, it should mention install `pipx` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 196b48f..aa111b4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ A Transformer sequence-to-sequence model is trained on various speech processing We used Python 3.9.9 and [PyTorch](https://pytorch.org/) 1.10.1 to train and test our models, but the codebase is expected to be compatible with Python 3.8-3.11 and recent PyTorch versions. The codebase also depends on a few Python packages, most notably [OpenAI's tiktoken](https://github.com/openai/tiktoken) for their fast tokenizer implementation. You can download and install (or update to) the latest release of Whisper with the following command: - pip install -U openai-whisper + pipx install openai-whisper Alternatively, the following command will pull and install the latest commit from this repository, along with its Python dependencies: