mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-12-16 11:47:48 +01:00
10 lines
295 B
Bash
10 lines
295 B
Bash
|
|
#!/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
|