transcribe / setup.sh
mimishanmi's picture
Update setup.sh
dcf45b6 verified
raw
history blame contribute delete
448 Bytes
#!/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