File size: 419 Bytes
49a13a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#! bin/bash
# Check GPU driver
nvidia-smi
# Upgrade packages to handle audio files
sudo add-apt-repository -y ppa:jonathonf/ffmpeg-4
sudo apt update
sudo apt install -y ffmpeg
# Check git-lfs
git-lfs -v
# Create and set venv
python3 -m venv venv
echo "source ~/venv/bin/activate" >> ~/.bashrc
bash
# Clone repo
git config --global credential.helper store
huggingface-cli login
git clone marinone94/whisper-tiny-sv
|