separate cuda install
Some checks are pending
Python Tests / test (3.10) (push) Waiting to run
Python Tests / test (3.11) (push) Waiting to run
Python Tests / test (3.12) (push) Waiting to run
Python Tests / test (3.13) (push) Waiting to run

This commit is contained in:
vegu-ai-tools 2025-05-04 20:50:11 +03:00
parent 6a62b4e67e
commit 26c21193b3
2 changed files with 18 additions and 0 deletions

8
install-cuda.bat Normal file
View file

@ -0,0 +1,8 @@
REM activate the virtual environment
call talemate_env\Scripts\activate
REM uninstall torch and torchaudio
python -m pip uninstall torch torchaudio -y
REM install torch and torchaudio
python -m pip install torch~=2.7.0 torchaudio~=2.7.0 --index-url https://download.pytorch.org/whl/cu128

10
install-cuda.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
# activate the virtual environment
source talemate_env/bin/activate
# uninstall torch and torchaudio
python -m pip uninstall torch torchaudio -y
# install torch and torchaudio
python -m pip install torch~=2.7.0 torchaudio~=2.7.0 --index-url https://download.pytorch.org/whl/cu128