mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-09-01 09:59:08 +00:00
10 lines
No EOL
295 B
Bash
Executable file
10 lines
No EOL
295 B
Bash
Executable file
#!/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 |