Spaces:
Build error
Build error
File size: 448 Bytes
0953b49 dcf45b6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash
pip install --upgrade pip
packages=(
"gradio>=3.0,<4.0"
"openai-whisper>=20231117"
"torch>=2.0.0,<3.0.0"
"numpy>=1.20.0,<2.0.0"
"ffmpeg-python>=0.2.0,<0.3.0"
"tqdm>=4.60.0,<5.0.0"
"cryptography>=3.4.0,<42.0.0"
"pyannote.audio>=2.1.1,<3.0.0"
"sounddevice>=0.4.0,<0.5.0"
"soundfile>=0.10.0,<0.11.0"
"pydantic>=1.8.0,<2.0.0"
)
for package in "${packages[@]}"
do
pip install "$package"
done |