Spaces:
Sleeping
Sleeping
File size: 312 Bytes
6a2d9d9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install -y python3-venv
sudo apt-get install -y python3-pip
sudo apt-get install -y ffmpeg
sudo apt install net-tools -y
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
#cd src/asr_indic_server
python src/asr_api.py
|