From c9b17b6f498f06edd2404debe9d981f05cf4b4a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Wed, 10 Dec 2025 05:59:58 +0300 Subject: [PATCH] Update installation commands in README to include index strategy for CUDA and ROCm --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 56fa081..4495fab 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] --extra-index-url https://download.pytorch.org/whl/cu128 +uv tool install --python 3.12 abogen[cuda] --extra-index-url https://download.pytorch.org/whl/cu128 --index-strategy unsafe-best-match # For NVIDIA GPUs (CUDA 12.6) - Older drivers -uv tool install --python 3.12 abogen[cuda126] --extra-index-url https://download.pytorch.org/whl/cu126 +uv tool install --python 3.12 abogen[cuda126] --extra-index-url https://download.pytorch.org/whl/cu126 --index-strategy unsafe-best-match # For NVIDIA GPUs (CUDA 13.0) - Newer drivers -uv tool install --python 3.12 abogen[cuda130] --extra-index-url https://download.pytorch.org/whl/cu130 +uv tool install --python 3.12 abogen[cuda130] --extra-index-url https://download.pytorch.org/whl/cu130 --index-strategy unsafe-best-match # 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] --extra-index-url https://download.pytorch.org/whl/nightly/rocm6.4 +uv tool install --python 3.12 abogen[rocm] --extra-index-url https://download.pytorch.org/whl/nightly/rocm6.4 --index-strategy unsafe-best-match ```