From 7722863435aac56f245b7b0be14fcec9b9439ead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Wed, 10 Dec 2025 05:40:16 +0300 Subject: [PATCH] Update installation commands in README to include extra index URLs for CUDA and ROCm --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f1aaa25..56fa081 100644 --- a/README.md +++ b/README.md @@ -39,13 +39,13 @@ First, [install uv](https://docs.astral.sh/uv/getting-started/installation/) if ```bash # For NVIDIA GPUs (CUDA 12.8) - Recommended -uv tool install --python 3.12 abogen[cuda] +uv tool install --python 3.12 abogen[cuda] --extra-index-url https://download.pytorch.org/whl/cu128 # For NVIDIA GPUs (CUDA 12.6) - Older drivers -uv tool install --python 3.12 abogen[cuda126] +uv tool install --python 3.12 abogen[cuda126] --extra-index-url https://download.pytorch.org/whl/cu126 # For NVIDIA GPUs (CUDA 13.0) - Newer drivers -uv tool install --python 3.12 abogen[cuda130] +uv tool install --python 3.12 abogen[cuda130] --extra-index-url https://download.pytorch.org/whl/cu130 # For AMD GPUs or without GPU (CPU) - ROCm is not available on Windows. Use Linux if you have AMD GPU uv tool install --python 3.12 abogen @@ -121,7 +121,7 @@ sudo dnf install espeak-ng # Fedora uv tool install --python 3.12 abogen # For AMD GPUs (ROCm 6.4) -uv tool install --python 3.12 abogen[rocm] +uv tool install --python 3.12 abogen[rocm] --extra-index-url https://download.pytorch.org/whl/nightly/rocm6.4 ```