From ed32002aea8fd46d7c11e4122496594125cf79b0 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Mon, 27 Feb 2023 12:21:54 +0100 Subject: [PATCH] Add instructions to install without git clone --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 87f0781..d88bcc9 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,16 @@ The model conversion requires the modules `transformers` and `torch` which are i pip install -e . ``` +It is also possible to install the module without cloning the Git repository: + +```bash +# Install the master branch: +pip install "faster-whisper @ https://github.com/guillaumekln/faster-whisper/archive/refs/heads/master.tar.gz" + +# Install a specific commit: +pip install "faster-whisper @ https://github.com/guillaumekln/faster-whisper/archive/a4f1cc8f11433e454c3934442b5e1a4ed5e865c3.tar.gz" +``` + ### GPU support GPU execution requires the NVIDIA libraries cuBLAS 11.x and cuDNN 8.x to be installed on the system. Please refer to the [CTranslate2 documentation](https://opennmt.net/CTranslate2/installation.html).