From 0d097f562ae5ee8b47917b96f331c21659bf8f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Sat, 13 Dec 2025 21:02:29 +0300 Subject: [PATCH] Update installation instructions for AMD GPUs and CUDA versions in README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 92d72de..32f2241 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ uv tool install --python 3.12 abogen[cuda126] --extra-index-url https://download # 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 --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 +# For AMD GPUs or without GPU - If you have AMD GPU, you need to use Linux for GPU acceleration, because ROCm is not available on Windows. uv tool install --python 3.12 abogen ``` @@ -466,10 +466,10 @@ This will start Abogen in command-line mode and display detailed error messages. > If you used `uv` to install Abogen, you can uninstall and try reinstalling with another CUDA version: > ```bash > uv tool uninstall abogen -> # First, try CUDA 13.0 for newer drivers -> uv tool install --python 3.12 abogen[cuda130] -> # If that doesn't work, try CUDA 12.6 for older drivers -> uv tool install --python 3.12 abogen[cuda126] +> # First, try CUDA 12.6 for older drivers +> uv tool install --python 3.12 abogen[cuda126] --extra-index-url https://download.pytorch.org/whl/cu126 --index-strategy unsafe-best-match +> # If that doesn't work, try CUDA 13.0 for newer drivers +> uv tool install --python 3.12 abogen[cuda130] --extra-index-url https://download.pytorch.org/whl/cu130 --index-strategy unsafe-best-match > ``` @@ -504,7 +504,7 @@ This will start Abogen in command-line mode and display detailed error messages. > ``` > If you installed Abogen using pip, open your terminal in the virtual environment and run: > ```bash -> pip install torch==2.8.0 torchaudio==2.8.0 torchvision==0.23.0 +> pip install torch==2.8.0 torchaudio==2.8.0 torchvision==0.23.0 --index-url https://download.pytorch.org/whl/cu128 > ```